1.流的概念

  • 概念

    • 内存与存储设备之间传输数据的通道。
    • 数据借助于流来进行传输

      2.流的分类

      按方向(重点)

      输入流:将<存储设备>中的内容读入到<内存>中

      输出流:将<内存>中的内容写入到<存储设备>中

    • image.png

      按单位

    • 字节流:以字节为单位,可以读写所有数据。

    • 字符流:以字符为单位,只能读写文本数据。

      按功能

    • 节点流:具有实际传输数据的读写功能

    • 过滤流:在节点流的基础之上增强功能

      3.字节流

  • 首先来看字节流的父类(抽象类)

    InputStream:字节输入流 表示字节输入流的所有类的超类

    • image.png

      OutputStream:字节输出流 次抽象类是表示输出字节流的所有类的超类,输出流接受输出字节并将这些字节发送到某个接收器。

    • image.png

image.png

4.文件字节流

FileInputStream

  • public int read(byte[] b)// 从流中读取多个字节,将读到的内容存放在b数组内,返回实际读到的数字,如果达到文件的地步,则返回-1 ```java /*
    • @Descripttion: FileInputStream相关学习
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-07 20:18:06
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-07 20:47:53 */ package review.IO;

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException;

public class Demo1 { public static void main(String[] args) throws IOException { // 1,创建FileInputStream,并制定文件路径 FileInputStream fis = new FileInputStream(“src\main\java\review\IO\memo.txt”); // // 2,读取文件 // fis.read(); // 一个字节一个字节的进行读取的方式 // int data =0; // while((data=fis.read())!=-1){ // System.out.println(data); // }

  1. // 一次读多个字节 字节长度决定读多少个字节
  2. // byte[] buf = new byte[3];
  3. // // 返回值 为读取了的字节的个数
  4. // int count = fis.read(buf); // 读到的字节返回到buf这个字节类型的数组中
  5. // System.out.println(new String(buf));
  6. // System.out.println("读取了多少字节:" + count);
  7. // 优化,一次性读完所有数据
  8. byte[] buf = new byte[1024];
  9. int count = 0;
  10. // * @param b the buffer into which the data is read.
  11. // * @return the total number of bytes read into the buffer, or
  12. // * <code>-1</code> if there is no more data because the end of
  13. // * the file has been reached.
  14. // 观察原码得知,如果没有数据了,就返回-1,即,不返回-1,表示仍有数据,继续进行遍历
  15. while ((count = fis.read(buf)) != -1) {
  16. System.out.println(new String(buf, 0, count));
  17. }
  18. // 3,关闭
  19. fis.close();
  20. System.out.println("执行完毕");
  21. }

}

  1. <a name="pdO9q"></a>
  2. ## FileOutputStream
  3. - public ovid write(byte[] e) 一次性多写几个字节,将B数组中所有音节,写入输入流
  4. ```java
  5. /*
  6. * @Descripttion: 演示文件输出流
  7. * @version:
  8. * @Author: Addicated
  9. * @Date: 2020-11-07 21:02:38
  10. * @LastEditors: Addicated
  11. * @LastEditTime: 2020-11-07 21:22:47
  12. */
  13. package review.IO;
  14. import java.io.FileNotFoundException;
  15. import java.io.FileOutputStream;
  16. import java.io.IOException;
  17. public class Demo2 {
  18. public static void main(String[] args) throws IOException {
  19. // 1.创建文件字节输出流对象
  20. // 当前调用的构造方法每次都会覆盖写入
  21. FileOutputStream fos = new FileOutputStream("memo1.txt");
  22. // 追加写入 添加一个参数为true即可
  23. // FileOutputStream fos = new FileOutputStream("memo1.txt",true);
  24. // 写入文件 以字符写入
  25. // fos.write(97);
  26. // fos.write('c');
  27. // fos.write('b');
  28. String string = "helloAddicated";
  29. // string.getBytes 将字符串自动转码成字节类型数组并返回
  30. fos.write(string.getBytes());
  31. fos.close();
  32. System.out.println("执行结束");
  33. }
  34. }

案例 文件字节流复制文件

  1. /*
  2. * @Descripttion:
  3. * @version:
  4. * @Author: Addicated
  5. * @Date: 2020-11-07 21:29:33
  6. * @LastEditors: Addicated
  7. * @LastEditTime: 2020-11-07 21:37:40
  8. */
  9. package review.IO;
  10. import java.io.FileInputStream;
  11. import java.io.FileNotFoundException;
  12. import java.io.FileOutputStream;
  13. import java.io.IOException;
  14. public class Demo3 {
  15. public static void main(String[] args) throws IOException {
  16. // 1.创建流
  17. // 字节输入流读取
  18. FileInputStream fis = new FileInputStream("D:\\学生成绩证明.pdf");
  19. // 创建字节输出流输出
  20. FileOutputStream fos = new FileOutputStream("D:\\学生成绩证明copy.pdf");
  21. // 一边读,一边写入
  22. byte[] buf =new byte[1024*1024*1024];
  23. int count =0;
  24. while((fis.read(buf))!=-1){
  25. fos.write(buf,0,count);
  26. }
  27. fis.close();
  28. fos.close();
  29. System.out.println("文件复制完毕了~~~");
  30. }
  31. }

5.字节缓冲流

缓冲流:BufferedInputStream/BufferedOutputStream

  • 提高IO效率,减少访问磁盘的次数
  • 数据存储在缓冲区,flush是将缓冲区的内容写入文件中,也可以直接close。

    BufferedInputStream

    ```java /*
    • @Descripttion: 使用字节缓冲流来读取文件
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-07 22:59:59
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-08 08:52:00 */ package review.IO;

import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException;

public class Demo4 { public static void main(String[] args) throws IOException { // 1.创建字节缓冲流 需要一个输入流对象象来作为参数传入 FileInputStream fis = new FileInputStream(“src\main\java\review\IO\memo.txt”); BufferedInputStream bis = new BufferedInputStream(fis); // 读取 // fis 是从硬盘读,bis是从缓存区读取 /**

  1. * The maximum size of array to allocate. Some VMs reserve some header words in
  2. * an array. Attempts to allocate larger arrays may result in OutOfMemoryError:
  3. * Requested array size exceeds VM limit
  4. */
  5. // private static int MAX_BUFFER_SIZE = Integer.MAX_VALUE - 8;
  6. // 查看原码得知buffered读的大小默认为8k
  7. // int data = 0;
  8. // while ((data = bis.read()) != -1) {
  9. // System.out.print((char) data);
  10. // }
  11. // 自己定义缓冲区的大小进行读取
  12. byte[] buf = new byte[1024];
  13. int count=0;
  14. while((count=bis.read(buf))!=-1){
  15. System.out.println(new String(buf,0,count));
  16. }
  17. // 关闭
  18. bis.close();
  19. }

}

  1. <a name="JKlle"></a>
  2. ### BufferedOutputStream
  3. - 该类实现缓冲的输出流,通过设置这种输出流,应用程序就可以将各个字节写入底层输出流中,而不必针对每次字节写入调用底层系统。从jdk1.0开始
  4. ```java
  5. /*
  6. * @Descripttion: 使用字节缓冲流写入文件
  7. * @version:
  8. * @Author: Addicated
  9. * @Date: 2020-11-08 08:53:59
  10. * @LastEditors: Addicated
  11. * @LastEditTime: 2020-11-08 09:34:44
  12. */
  13. package review.IO;
  14. import java.io.BufferedOutputStream;
  15. import java.io.FileOutputStream;
  16. public class Demo5 {
  17. public static void main(String[] args) throws Exception {
  18. // 1,创建字节输出缓冲流
  19. FileOutputStream fos = new FileOutputStream("memo2.text");
  20. BufferedOutputStream bos = new BufferedOutputStream(fos);
  21. // 2,写入文件
  22. for (int i = 0; i < 10; i++) {
  23. bos.write("hello addicated\r\n".getBytes()); // 先写入到8k的缓冲区
  24. bos.flush(); // 刷新到硬盘中
  25. }
  26. // 关闭(内部会自动调用flush方法,)即
  27. bos.close();
  28. }
  29. }

6.对象流

对象流 : ObjectOutputStream / ObjectInputStream

  • 增强了缓冲区功能
  • 增强了读写8中基本数据类型和字符串功能
  • 增强了读写对象的功能
    • readObject() 从流中读一个对象
    • writeObject(Object obj) 向流中写入一个对象
  • 使用流传输对象的过程称为序列化,反序列化

    注意点

  • 在运用的时候必须要让实体类实现serializable接口

  • 序列化类中的对象属性也要求实现serializable接口
  • 序列化版本号ID,保证序列化的类和反序列化的类是同一个类
  • 使用transient修饰属性,这个属性就不能序列化了,transient意为瞬间的
  • 静态属性也是不能序列化的
  • 序列化多个对象,可以借助集合的形式吧对杨压入集合中然后通过对集合进行序列化反序列化操作实现多对象序列化
  1. // 对象流操作的pojo类
  2. public class Student implements Serializable{
  3. // 用来保证序列化和反序列化操作的是同一个类
  4. private static final long serialVersionUID=100L;
  5. private String name;
  6. // transient 修饰的属性不会被序列化,
  7. private transient int age;
  8. public String getName() {
  9. return name;
  10. }

ObjectOutputSteam

  1. /*
  2. * @Descripttion: 对象流系列--序列化(写入操作
  3. * 要求,必须让实体类实现seriable 接口
  4. * @version:
  5. * @Author: Addicated
  6. * @Date: 2020-11-08 09:45:59
  7. * @LastEditors: Addicated
  8. * @LastEditTime: 2020-11-08 11:05:52
  9. */
  10. package review.ObjIO;
  11. import java.io.FileNotFoundException;
  12. import java.io.FileOutputStream;
  13. import java.io.IOException;
  14. import java.io.ObjectOutputStream;
  15. public class demo1 {
  16. public static void main(String[] args) throws IOException {
  17. // 1.创建对象流
  18. FileOutputStream fos = new FileOutputStream("stu.bin"); // bin表示为一个二进制文件
  19. // 对象流的输出同时需要给与一个底层的流对象作为参数
  20. ObjectOutputStream oos = new ObjectOutputStream(fos);
  21. // 2 序列化写入操作
  22. // 创建pojo对象,
  23. Student stu = new Student("adi", 13);
  24. oos.writeObject(stu);
  25. // 3 关闭
  26. oos.close();
  27. // Exception in thread "main" java.io.NotSerializableException:
  28. // review.ObjIO.Student
  29. // 对象不可写入的异常。对象如果想要序列化,需要实现一个Serializable接口
  30. // serializable 接口仅是一个表示,该接口中没有任何需要实现的接口方法声明
  31. }
  32. }

ObjectInputStream

  1. /*
  2. * @Descripttion: 使用objectinputstream实现反序列化(读取重构成对象
  3. * @version:
  4. * @Author: Addicated
  5. * @Date: 2020-11-08 12:01:00
  6. * @LastEditors: Addicated
  7. * @LastEditTime: 2020-11-08 12:31:50
  8. */
  9. package review.ObjIO;
  10. import java.io.FileInputStream;
  11. import java.io.IOException;
  12. import java.io.ObjectInputStream;
  13. public class demo2 {
  14. public static void main(String[] args) throws IOException, ClassNotFoundException {
  15. // 1,创建独享流
  16. FileInputStream fis = new FileInputStream("stu.bin");
  17. ObjectInputStream ois = new ObjectInputStream(fis);
  18. // 2.读取文件 反序列化文件 不可多次读取同一个对象文件,会抛出eof异常
  19. Student s = (Student)ois.readObject();
  20. // 3 关闭
  21. ois.close();
  22. System.out.println("执行完毕");
  23. System.out.println(s.toString());
  24. }
  25. }

7.编码方式

字符编码

  • ISO-8859-1 收录除ASCII外,还包括西欧,希腊语,泰语,阿拉伯语,希伯来语对应的文字符号
  • UTF-8 针对Unicode码表的可变长度字符编码
  • GB2312 简体中文
  • GBK 健体中文,扩充
  • BIG 台湾,繁体中文
  • 当编码反射和解码凡是不一致时,会出现乱码

    8.字符流

    字符流的父类(抽象类):

    Reader 字符输入流

    • public int read()
    • public int read(char[] c )
    • public int read(char[] b,int off,int len)

      Writer 字符输出流

    • public void write(int n) {}

    • public void write(String str)
    • public void write(char[] c)

      8.1 文件字符流

      FileReader

  • public int read(char[] c) // 从流中读取多个字符,将读到的内容存入c数组,返回实际读到的字符数,如果达到文件的尾部。返回-1 ```java /*

    • @Descripttion:
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-08 13:34:09
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-08 15:15:28 */ package review.ObjIO;

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException;

public class demo3 { public static void main(String[] args) throws IOException { // 1.创建FileReader 文件字符输入流 FileReader fr = new FileReader(“stu.bin”); // 2.读取

  1. // 2.1 单个字符读取
  2. // int data =0;
  3. // while((data=fr.read())!=-1){
  4. // System.out.print((char)data);
  5. // }
  6. char[] buf = new char[1024];
  7. int count = 0;
  8. while ((count = fr.read(buf)) != -1) {
  9. System.out.println(new String(buf, 0, count));
  10. }
  11. // 3.关闭
  12. fr.close();
  13. }

} /*

  • @Descripttion:
  • @version:
  • @Author: Addicated
  • @Date: 2020-11-08 13:34:09
  • @LastEditors: Addicated
  • @LastEditTime: 2020-11-08 15:15:28 */ package review.ObjIO;

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException;

public class demo3 { public static void main(String[] args) throws IOException { // 1.创建FileReader 文件字符输入流 FileReader fr = new FileReader(“stu.bin”); // 2.读取

  1. // 2.1 单个字符读取
  2. // int data =0;
  3. // while((data=fr.read())!=-1){
  4. // System.out.print((char)data);
  5. // }
  6. char[] buf = new char[1024];
  7. int count = 0;
  8. while ((count = fr.read(buf)) != -1) {
  9. System.out.println(new String(buf, 0, count));
  10. }
  11. // 3.关闭
  12. fr.close();
  13. }

}

  1. <a name="GjJcg"></a>
  2. ## FileWriter
  3. - public void write(String str)// 一次写多个字符,将b数组中所有字符,写入输入流
  4. ```java
  5. /*
  6. * @Descripttion: 使用fileWriteer来写入文件,
  7. * @version:
  8. * @Author: Addicated
  9. * @Date: 2020-11-08 15:18:12
  10. * @LastEditors: Addicated
  11. * @LastEditTime: 2020-11-08 16:16:33
  12. */
  13. package review.ObjIO;
  14. import java.io.FileWriter;
  15. import java.io.IOException;
  16. public class demo4 {
  17. public static void main(String[] args) throws IOException {
  18. // 1.创建一个filewriter对象
  19. FileWriter fw =new FileWriter("fwOutPut.text");
  20. // 2.写入
  21. for (int i = 0; i < 10; i++) {
  22. fw.write("hello this is addicated\r\n");
  23. fw.write("java no 1 ");
  24. fw.flush();
  25. }
  26. // 3关闭
  27. fw.close();
  28. }
  29. }

运用实例,,使用文件字符流来copy文件

  • 注意点。使用fileReader 和 FileWriter 复制文本文件,不能复制图片或者二进制文件,因为二进制文件没有字符编码,无法被识别 ```java /*
    • @Descripttion:
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-08 16:19:00
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-08 16:33:17 */ package review.ObjIO;

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileReader; import java.io.FileWriter;

public class demo5_homework { public static void main(String[] args) throws Exception {

  1. // 1.字符读取流这样的操作无法读除了文本意外的文件,应当使用字节流进行读取
  2. FileReader fReader = new FileReader("memo2.text");
  3. FileWriter fWriter = new FileWriter("homework.txt");
  4. // 进行读写
  5. int data =0;
  6. while((data=fReader.read())!=-1){
  7. fWriter.write(data);
  8. }
  9. // 关闭流
  10. fReader.close();
  11. fWriter.close();
  12. }

}

  1. <a name="dzsoE"></a>
  2. # 9.字符缓冲流
  3. <a name="eC2S3"></a>
  4. ## 缓冲流,BufferedReader / BufferedWriter
  5. - 高效读写
  6. - 支持输入换行符
  7. - 可以一次写一行,读一行
  8. <a name="6X7Oy"></a>
  9. ## BufferedReader
  10. ```java
  11. /*
  12. * @Descripttion:
  13. * @version:
  14. * @Author: Addicated
  15. * @Date: 2020-11-08 16:49:01
  16. * @LastEditors: Addicated
  17. * @LastEditTime: 2020-11-08 16:59:43
  18. */
  19. package review.ObjIO;
  20. import java.io.BufferedReader;
  21. import java.io.FileReader;
  22. public class demo6 {
  23. public static void main(String[] args) throws Exception {
  24. // 字符缓冲流的学习 通过字符缓冲流读取文件
  25. FileReader fReader = new FileReader("memo1.txt");
  26. // 缓冲流需要一个输入流对象作为参数
  27. BufferedReader bufferedReader = new BufferedReader(fReader);
  28. // 2 读取
  29. // 第一种方式读取
  30. // char[] buf = new char[1024]; // 设定读取到缓冲区的数据大小
  31. // int count =0; //
  32. // while((count=bufferedReader.read(buf))!=-1){
  33. // System.out.println(count); // count为实际读取的字符个数
  34. // System.out.println(new String(buf,0,count));
  35. // }
  36. // 第二种方式进行读取 一行一行的堵
  37. String line = null;
  38. while((line = bufferedReader.readLine())!=null){
  39. // 如果line不为空,则代表仍有数据,可以继续向下进行遍历
  40. System.out.println(line);
  41. }
  42. // 关闭
  43. bufferedReader.close();
  44. }
  45. }

BufferedWriter

  1. /*
  2. * @Descripttion:
  3. * @version:
  4. * @Author: Addicated
  5. * @Date: 2020-11-08 17:01:22
  6. * @LastEditors: Addicated
  7. * @LastEditTime: 2020-11-08 20:09:28
  8. */
  9. package review.ObjIO;
  10. import java.io.BufferedWriter;
  11. import java.io.FileWriter;
  12. public class demo7 {
  13. public static void main(String[] args) throws Exception {
  14. // bufferedWriter 的学习和使用
  15. // 1,创建bufferedWriter
  16. FileWriter fw = new FileWriter("BUFOUT.txt");
  17. BufferedWriter bw =new BufferedWriter(fw);
  18. // 2.写入数据
  19. for (int i = 0; i < 10; i++) {
  20. bw.write("addicated studying bufferedWriter");
  21. bw.newLine(); // 写入一个换行符 根据操作系统决定的换行符
  22. bw.flush();
  23. }
  24. // 3,关闭流
  25. bw.close();
  26. }
  27. }

10.打印流

PrintWriter

  • 封装了print() / println() 方法,支持写入后换行
  • 支持数据原样打印 ```java /*
    • @Descripttion: 学习printWriter
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-08 22:33:03
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-08 22:57:58 */ package review.ObjIO;

import java.io.FileNotFoundException; import java.io.PrintWriter;

public class demo8 { public static void main(String[] args) throws FileNotFoundException { // 1 创建打印流 PrintWriter pw = new PrintWriter(“print.txt”);

  1. // 2 打印
  2. pw.println("this is a printWriter test~");
  3. pw.println(3.14);
  4. pw.println(true);
  5. // 3 流关闭
  6. pw.close();
  7. }

}

  1. <a name="VH60X"></a>
  2. # 11.转换流
  3. <a name="MHMjG"></a>
  4. ## 桥转换流:InputStreamReader / OutputStreamWriter
  5. 可以将字节流转换为字符流。<br />可以设置字符的编码方式。<br />实际上是 内存中的字符,和硬盘中的字节之间的转换
  6. <a name="PR2xH"></a>
  7. ### InputStreamReader
  8. ```java
  9. /*
  10. * @Descripttion: InputStreamReader 读取文件
  11. * @version:
  12. * @Author: Addicated
  13. * @Date: 2020-11-09 14:27:10
  14. * @LastEditors: Addicated
  15. * @LastEditTime: 2020-11-09 15:04:46
  16. */
  17. package review.StreamIO;
  18. import java.io.FileInputStream;
  19. import java.io.InputStreamReader;
  20. public class demo1 {
  21. public static void main(String[] args) throws Exception {
  22. // 1 创建 inputStreamReader 对象
  23. FileInputStream fis = new FileInputStream("memo1.txt");
  24. // 参数为一个文件输入流对象,还有字符编码
  25. // InputStreamReader inputStreamReader = new InputStreamReader(fis, "utf-8");
  26. // 如果字符编码与目标文件不一致,会输出乱码,所以在读写的时候必须保持编码一致
  27. InputStreamReader inputStreamReader = new InputStreamReader(fis, "gbk");
  28. // 2 读取文件
  29. int data = 0;
  30. while ((data = inputStreamReader.read()) != -1) {
  31. System.out.print((char) data);
  32. }
  33. // 3.关闭流
  34. inputStreamReader.close();
  35. }
  36. }

OutputStreamWriter

  1. /*
  2. * @Descripttion: 使用outPutStreamWriter 写入文件,使用指定的编码
  3. * @version:
  4. * @Author: Addicated
  5. * @Date: 2020-11-09 15:05:04
  6. * @LastEditors: Addicated
  7. * @LastEditTime: 2020-11-09 15:18:25
  8. */
  9. package review.StreamIO;
  10. import java.io.FileOutputStream;
  11. import java.io.OutputStreamWriter;
  12. public class demo2 {
  13. public static void main(String[] args) throws Exception {
  14. // 创建 outPutStreamWriter
  15. FileOutputStream fOutputStream = new FileOutputStream("outputStream.txt");
  16. // 作为参数需要字节输出流
  17. OutputStreamWriter osw = new OutputStreamWriter(fOutputStream, "utf-8");
  18. // 2进行写入
  19. for (int i = 0; i < 10; i++) {
  20. osw.write("我爱徐卓轶\r\n");
  21. osw.flush();
  22. }
  23. // 3 关闭流
  24. osw.close();
  25. }
  26. }

12.File类

  • 概念:代表物理盼复中的一个文件或者盼复中的一个文件或者文件夹

文件操作
image.png

  1. /*
  2. * @Descripttion: 演示file类的使用
  3. * @version:
  4. * @Author: Addicated
  5. * @Date: 2020-11-09 15:46:17
  6. * @LastEditors: Addicated
  7. * @LastEditTime: 2020-11-09 16:58:00
  8. */
  9. package review.StreamIO;
  10. import java.io.File;
  11. import java.io.IOException;
  12. import java.util.Date;
  13. public class FileC {
  14. public static void main(String[] args) throws IOException {
  15. // 分隔符
  16. // 文件操作
  17. // 文件夹操作
  18. separator();
  19. fileOpe();
  20. dirOper();
  21. }
  22. // 分隔符
  23. public static void separator() {
  24. System.out.println("路径分隔符" + File.pathSeparator);
  25. System.out.println("名称分隔符" + File.separator);
  26. }
  27. // 文件操作
  28. public static void fileOpe() throws IOException {
  29. // 1.创建文件
  30. // 创建文件对象,然后使用对象的createNewFile方法
  31. File file = new File("newFile.txt");
  32. System.out.println(file.toString());
  33. // 判断文件是否存在 真 为存在,假 为不存在
  34. if (!(file.exists())) {
  35. boolean b = file.createNewFile();
  36. System.out.println("创建结果:" + b);
  37. }
  38. // 2 删除文件
  39. // 直接删除
  40. System.out.println("删除结果:" + file.delete());
  41. // 使用jvm退出时进行删除
  42. // file.deleteOnExit();
  43. // Thread.sleep(5000);
  44. // 3 获取文件信息
  45. System.out.println("获取文件的绝对路径:" + file.getAbsolutePath());
  46. System.out.println("获取路径:" + file.getPath());
  47. System.out.println("获取名称:" + file.getName());
  48. System.out.println("获取父目录:" + file.getParent());
  49. System.out.println("获得文件长度:" + file.length());
  50. System.out.println("获得文件的创建时间:" + new Date(file.lastModified()).toLocaleString());
  51. // 4 判断
  52. System.out.println("是否可写" + file.canWrite());
  53. System.out.println("是否可读" + file.canRead());
  54. System.out.println("是否可执行" + file.canExecute());
  55. System.out.println("是否是文件" + file.isFile());
  56. System.out.println("是否隐藏" + file.isHidden());
  57. }
  58. // 文件夹操作
  59. public static void dirOper() {
  60. // 1.创建文件夹
  61. File dir = new File("D:\\addicated\\test");
  62. if (!(dir.exists())) {
  63. System.out.println(dir.mkdirs());// 返回为布尔型
  64. // dir.mkdirs();// 创建多级目录
  65. // dir.mkdir(); // 创建单级目录
  66. }
  67. // 2 删除文件夹
  68. // 直接删除 ,,使用jvm删除
  69. dir.delete(); // 直接删除,只能删除空目录,且是最后一个目录
  70. // jvm进行删除
  71. dir.deleteOnExit();
  72. // 3 获取文件夹信息
  73. System.out.println("获取绝对路径:" + dir.getAbsolutePath());
  74. System.out.println("获取路径:" + dir.getPath());
  75. System.out.println("获取文件夹名称:" + dir.getName());
  76. System.out.println("获取父级目录:" + dir.getParent());
  77. System.out.println("获得文件的创建时间:" + new Date(dir.lastModified()).toLocaleString());
  78. // 4 判断
  79. System.out.println("是否是文件夹:" + dir.isDirectory());
  80. System.out.println("是否是隐藏的" + dir.isHidden());
  81. // 5 遍历文件夹
  82. File dir2 = new File("D:\\");
  83. String[] files = dir2.list();
  84. File[] f1 = dir2.listFiles(); // listFiles 返回的是file类型的数组
  85. for (String string : files) {
  86. System.out.println(string);
  87. }
  88. }
  89. }

13.FileFilter接口

  • public interface FileFilter
    • boolean accept(File pathname)
  • 当调用File类中的listFiles()方法时,支持传入FileFilter接口接口实现类,对获取文件进行过滤,只有满足条件的文件的才可出现在listFiles()的返回值中

    1. // 通过lamda表达式的方式重写accept方法 即 进行过滤的规则,然后达到规则
    2. System.out.println("---------演示 fileFileter接口的使用");
    3. File[] f2= dir2.listFiles(new FileFilter(){
    4. @Override
    5. public boolean accept(File pathname) {
    6. if(pathname.getName().endsWith(".pdf")){
    7. return true;
    8. }
    9. return false;
    10. }
    11. });
    12. for (File file : f2) {
    13. System.out.println(file.getName());
    14. }
    15. }

    14.递归遍历和递归删除

  • 案例,递归遍历文件夹,包括子文件夹
    ```java /*

    • @Descripttion:
    • @version:
    • @Author: Addicated
    • @Date: 2020-11-09 18:13:20
    • @LastEditors: Addicated
    • @LastEditTime: 2020-11-09 18:18:25 */ package review.StreamIO;

import java.io.File;

public class case1 { public static void main(String[] args) { listDir(new File(“D:\“));

  1. // 递归遍历文件夹
  2. }
  3. public static void listDir(File dir) {
  4. File[] files = dir.listFiles(); // 返回为file类型的数组,
  5. System.out.println(dir.getAbsolutePath());
  6. if (files != null && files.length > 0) { // 对其意义判断,只要是目录,就进行
  7. for (File file : files) {
  8. if (file.isDirectory()) {
  9. listDir(file);// 这个地方用到了递归 ,
  10. } else {
  11. System.out.println(file.getAbsolutePath());
  12. }
  13. }
  14. }
  15. }
  16. // 递归删除文件夹
  17. public static void deleteDir(File dir) {
  18. File[] files = dir.listFiles();
  19. // 首先判断files对象不为空,长度大于0
  20. if (files != null && files.length > 0) {
  21. for (File file : files) {
  22. if(file.isDirectory()){
  23. deleteDir(file); // 如果是目录,就递归删除
  24. }else{
  25. // 删除文件
  26. System.out.println(file.getAbsolutePath()+"删除" + file.delete());
  27. }
  28. }
  29. }
  30. System.out.println(dir.getAbsolutePath()+"删除" + dir.delete());
  31. }

}

  1. <a name="DScyN"></a>
  2. # 15. 补充 Properties
  3. - properties 属性集合 继承hashtable 线程安全
  4. - 特点
  5. - 存储属性名和属性值
  6. - 属性名和属性值都是字符串类型
  7. - 没有泛型
  8. - 和流有关
  9. ```java
  10. /*
  11. * @Descripttion:
  12. * @version:
  13. * @Author: Addicated
  14. * @Date: 2020-11-09 18:34:46
  15. * @LastEditors: Addicated
  16. * @LastEditTime: 2020-11-09 18:45:28
  17. */
  18. package review.StreamIO;
  19. import java.io.FileInputStream;
  20. import java.io.FileNotFoundException;
  21. import java.io.FileOutputStream;
  22. import java.io.IOException;
  23. import java.io.PrintWriter;
  24. import java.util.Properties;
  25. import java.util.Set;
  26. public class properties {
  27. public static void main(String[] args) throws IOException {
  28. // 1 创建集合
  29. Properties properties = new Properties();
  30. // 2 添加数据
  31. properties.setProperty("username", "addicated");
  32. properties.setProperty("age", "26");
  33. System.out.println(properties.toString());
  34. // 3 遍历方式
  35. // keyset 取key的set集合
  36. // entrySet 取 键值对的集合
  37. // stringPropertyNames() 返回所有属性名集合
  38. Set<String> names = properties.stringPropertyNames();
  39. for (String string : names) {
  40. System.out.println(string);
  41. // 取值的话可以根据键来进行对应值的取
  42. System.out.println(properties.getProperty(string));
  43. }
  44. // 4 和流有关的方法
  45. // =======list方法
  46. // PrintWriter pw = new PrintWriter("print.txt");
  47. // properties.list(pw);
  48. // pw.close(); // 将properties集合中的属性写入到本地的文件中
  49. /// -------store 方法
  50. // FileOutputStream fos = new FileOutputStream("print.properties");
  51. // properties.store(fos, "first commit ");
  52. // fos.close();
  53. // --------load 方法
  54. Properties p1= new Properties();
  55. FileInputStream fis =new FileInputStream("print.properties");
  56. p1.load(fis);
  57. fis.close();
  58. System.out.println(p1.stringPropertyNames());
  59. }
  60. }

总结

流的概念

内存与存储设备之间传输数据的通道。

流的分类

输入流,输出流;字节流,字符流;节点流,过滤流

序列化,反序列化

讲对象通过流写入文件,成为序列化
吧对象从流中读到内存,叫反序列化

File对象

代表物理盼复中的一个文件或者文件夹
IO框架图解
JAVA Review系列--Day08 IO框架 - 图6