Java之IO流总结

Java之IO流总结

  • 一、File类的使用
    • (一)概述
    • (二)实例化
    • (三)常用方法
  • 二、IO流概述
    • (一)简述
    • (二)流的分类
    • (三)IO流体系(重点)
      • 1.InputSteam & Reader
      • 2.OutputSteam & Writer
    • (四)输入、输出标准化过程
  • 三、节点流(文件流)
    • (一)文件字符流FileReader和FileWriter的使用
    • (二)文件字节流FileInputSteam和FileOutputSteam的使用
  • 四、缓冲流
    • (一)概述
    • (二)BufferInputStream和BufferOutputStream的使用
    • (三)BufferedReader和BufferedWriter的使用
  • 五、转换流
    • (一)简介
    • (二)InputStreamReader和OutputStreamWriter
    • (三)编码集
  • 六、标准输入、输出流
  • 七、打印流,PrintStream和PrintWriter
  • 八、数据流,DataInputStream 和 DataOutputStream
  • 九、对象流与序列化
    • (一)序列化与反序列化
    • (二)对象流
  • 十、任意存取文件流RandomAccessFile
  • 十一、NIO和NIO2简介

一、File类的使用

(一)概述

使用说明:

  • File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)。
  • File类声明在java.io包下:文件和文件路径的抽象表示形式,与平台无关。
  • File类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用IO流来完成。
  • 想要在Java程序中表示一个真实存在的文件或目录,那么必须有一个File对象,但是Java程序中的一个File对象,可能没有一个真实存在的文件或目录。
  • 后续File类的对象常会作为参数传递到流的构造器中,指明读取或写入的"终点"。

(二)实例化

三个常用的构造方法:

  1. public File(String pathname)
    以pathname为路径创建File对象,可以是绝对路径或者相对路径。
  2. public File(String parent,String child)
    以parent为父路径,child为子路径创建File对象。
  3. public File(File parent,String child)
    根据一个父File对象和子文件路径创建File对象。

关于路径:

相对路径和绝对路径:
  • 相对路径:相较于某个路径下,指明的路径。
  • 绝对路径:包含盘符在内的文件或文件目录的路径

说明:

  • IDEA中:
    如果使用JUnit中的单元测试方法测试,相对路径即为当前Module下。
    如果使用main()测试,相对路径即为当前的Project下。
  • Eclipse中:
    不管使用单元测试方法还是使用main()测试,相对路径都是当前的Project下。
路径分隔符:
  • windows和DOS系统默认使用“\”来表示
  • UNIX和URL使用“/”来表示
  • Java程序支持跨平台运行,因此路径分隔符要慎用。
  • 为了解决这个隐患,File类提供了一个常量: public static final String separator。根据操作系统,动态的提供分隔符。

代码实例:
Java之IO流总结_第1张图片

@Test
public void test1(){
    //构造器一
    //相对路径
    File file1 = new File("hello.txt");//相对于当前module
    //绝对路径,也可以写成:E:/idea_workspace/shangguigu_java/day08/hello.txt
    File file2 = new File("E:\\idea_workspace\\shangguigu_java\\day08\\hello.txt");

    System.out.println(file1);//hello.txt
    System.out.println(file2);//E:\idea_workspace\shangguigu_java\day08\hello.txt

    //构造器二
    File file3 = new File("E:\\idea_workspace","shangguigu_java");
    System.out.println(file3);//E:\idea_workspace\shangguigu_java

    //构造器三
    File file4 = new File(file3,"day08");
    System.out.println(file4);//E:\idea_workspace\shangguigu_java\day08

}

(三)常用方法

  1. File类的获取功能:
  • public String getAbsolutePath():获取绝对路径
  • public String getPath() :获取路径
  • public String getName() :获取名称
  • public String getParent():获取上层文件目录路径。若无,返回null
  • public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
  • public long lastModified() :获取最后一次的修改时间,毫秒值

如下的两个方法适用于文件目录:

  • public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
  • public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组

代码示例:

@Test
public void test2(){
    File file1 = new File("hello.txt");
    File file2 = new File("E:\\io\\hi.txt");//不存在的文件
    //1.public String getAbsolutePath():获取绝对路径
    System.out.println(file1.getAbsolutePath());//E:\idea_workspace\dongli_java\day05\hello.txt
    System.out.println(file2.getAbsolutePath());//E:\io\hi.txt

    //2.public String getPath() :获取路径
    System.out.println(file1.getPath());//hello.txt
    System.out.println(file2.getPath());//E:\io\hi.txt

    //3.public String getName() :获取名称
    System.out.println(file1.getName());//hello.txt
    System.out.println(file2.getName());//hi.txt

    //4.public String getParent():获取上层文件目录路径。若无,返回null
    System.out.println(file1.getParent());//null
    System.out.println(file2.getParent());//E:\io

    //5.public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
    System.out.println(file1.length());//3
    System.out.println(file2.length());//0

    //6.public long lastModified() :获取最后一次的修改时间,毫秒值
    System.out.println(new Date(file1.lastModified()));//Thu Feb 04 19:24:49 CST 2021
    System.out.println(file2.lastModified());//0
}
  1. File类的判断功能
  • public boolean isDirectory():判断是否是文件目录(常用)
  • public boolean isFile() :判断是否是文件(常用)
  • public boolean exists() :判断是否存在(常用)
  • public boolean canRead() :判断是否可读
  • public boolean canWrite() :判断是否可写
  • public boolean isHidden() :判断是否隐藏
@Test
public void test5(){
    File file1 = new File("hello.txt");//文件存在
    File file2 = new File("E:\\");
    //1.public boolean isDirectory():判断是否是文件目录
    System.out.println(file1.isDirectory());//false
    System.out.println(file2.isDirectory());//true

    //2.public boolean isFile() :判断是否是文件
    System.out.println(file1.isFile());//true
    System.out.println(file2.isFile());//false

    //3.public boolean exists() :判断是否存在
    System.out.println(file1.exists());//true
    System.out.println(file2.exists());//true
    
    //4.public boolean canRead() :判断是否可读
    System.out.println(file1.canRead());//true
    System.out.println(file2.canRead());//true

    //5.public boolean canWrite() :判断是否可写
    System.out.println(file1.canWrite());//true
    System.out.println(file2.canWrite());//true
    
    //6.public boolean isHidden() :判断是否隐藏
    System.out.println(file1.isHidden());//false
    System.out.println(file2.isHidden());//true
}
  1. Flie类的创建和删除功能功能
创建硬盘中对应的文件或文件目录
  • public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
  • public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
  • public boolean mkdirs() :创建文件目录。如果此文件目录存在,就不创建了。如果上层文件目录不存在,一并创建
删除磁盘中的文件或文件目录
  • public boolean delete():删除文件或者文件夹,如果删除的是文件夹,则文件夹必须为空
    删除注意事项:Java中的删除不走回收站。
@Test
public void test6() throws IOException {
    File file1 = new File("one.txt");//一个不存在的文件
    if (!file1.exists()) {
        System.out.println("创建文件" + file1.createNewFile());//创建文件true
    } else {
        System.out.println("删除文件" + file1.delete());
    }
    File file2 = new File("E:\\one");//一个不存在的文件夹
    if (!file2.exists()) {
        System.out.println("创建文件夹" + file2.mkdir());//创建文件夹true
    } else {
        System.out.println("删除文件夹" + file2.delete());
    }
}
  1. 内存解析
    Java之IO流总结_第2张图片

二、IO流概述

(一)简述

  • I/O是Input/Output的缩写, I/O技术是非常实用的技术,用于处理设备之间的数据传输。如读/写文件,网络通讯等。
  • Java程序中,对于数据的输入/输出操作以 “流(stream)” ” 的方式进行。
  • java.io包下提供了各种“流”类和接口,用以获取不同种类的数据,并通过 标准的方法输入或输出数据。

(二)流的分类

按操作数据单位分为:字节流、字符流

对于文本文件(.txt,.java,.c,.cpp),使用字符流处理
对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,…),使用字节流处理

按数据的流向分为:输入流、输出流

输入input:读取外部数据(磁盘、光盘等存储设备的数据)到程序(内存)中。
输出output:将程序(内存)数据输出到磁盘、光盘等存储设备中。

按流的角色分为:节点流、处理流

节点流:直接从数据源或目的地读写数据。

处理流:不直接连接到数据源或目的地,而是“连接”在已存在的流(节点流或处理流)之上,通过对数据的处理为程序提供更为强大的读写功能。
Java之IO流总结_第3张图片

(三)IO流体系(重点)

  • 总体分类:
    Java之IO流总结_第4张图片

  • 常用的几个IO流结构

抽象基类 节点流(或文件流) 缓冲流(处理流的一种)
InputStream FileInputStream (read(byte[] buffer)) BufferedInputStream (read(byte[] buffer))
OutputStream FileOutputStream (write(byte[] buffer,0,len) BufferedOutputStream (write(byte[] buffer,0,len) / flush()
Reader FileReader (read(char[] cbuf)) BufferedReader (read(char[] cbuf) / readLine())
Writer FileWriter (write(char[] cbuf,0,len) BufferedWriter (write(char[] cbuf,0,len) / flush()
  • 对抽象基类的说明:
抽象基类 字节流 字符流
输入流 InputSteam Reader
输出流 OutputSteam Writer
说明:Java的lO流共涉及40多个类,实际上非常规则,都是从如下4个抽象基类派生的。
由这四个类派生出来的子类名称都是以其父类名作为子类名后缀。

1.InputSteam & Reader

InputStream和Reader是所有输入流的基类。

InputStream(典型实现:FileInputStream)

int read()
int read(byte[] b)
int read(byte[] b,int off,int len)

Reader(典型实现:FileReader)

int read()
int read(char[] c)
int read(char[] c,int off,int len)

  • 程序中打开的文件IO资源不属于内存里的资源,垃圾回收机制无法回收该资源,所以应该显式关闭文件IO资源。
  • FileInputStream从文件系统中的某个文件中获得输入字节。FileInputStream用于读取非文本数据之类的原始字节流。要读取字符流,需要使用 FileReader。
InputSteam:
  • int read()
    从输入流中读取数据的下一个字节。返回0到255范围内的int字节值。如果因为已经到达流末尾而没有可用的字节,则返回值-1。
  • int read(byte[] b)
    从此输入流中将最多b.length个字节的数据读入一个byte数组中。如果因为已经到达流末尾而没有可用的字节,则返回值-1.否则以整数形式返回实际读取的字节数。
  • int read(byte[] b,int off,int len)
    将输入流中最多len个数据字节读入byte数组。尝试读取len个字节,但读取的字节也可能小于该值。以整数形式返回实际读取的字节数。如果因为流位于文件末尾而没有可用的字节,则返回值-1。
  • public void close throws IOException
    关闭此输入流并释放与该流关联的所有系统资源。
Reader:
  • int read()
    读取单个字符。作为整数读取的字符,范围在0到65535之间(0x00-0xffff)(2个字节的 Unicode码),如果已到达流的末尾,则返回-1。
  • int read(char[] cbuf)
    将字符读入数组。如果已到达流的末尾,则返回-1。否则返回本次读取的字符数。
  • int read(char[] cbuf,int off,int len)
    将字符读入数组的某一部分。存到数组cbuf中,从off处开始存储,最多读len个字符。如果已到达流的末尾,则返回-1。否则返回本次读取的字符数。
  • public void close throws IOException
    关闭此输入流并释放与该流关联的所有系统资源

2.OutputSteam & Writer

OutputStream和Writer也非常相似:

void write(int b/int c);
void write(byte[] b/char[] cbuf);
void write(byte[] b/char[] buff,int off,int len);
void flush();
void close();需要先刷新,再关闭此流

因为字符流直接以字符作为操作单位,所以 Writer可以用字符串来替换字符数组,即以 String对象作为参数

void write(String str);
void write(String str,int off,int len);

FileOutputStream从文件系统中的某个文件中获得输出字节。FileOutputstream用于写出非文本数据之类的原始字节流。要写出字符流,需要使用 FileWriter

OutputStream:
  • void write(int b)
    将指定的字节写入此输出流。 write的常规协定是:向输出流写入一个字节。要写入的字节是参数b的八个低位。b的24个高位将被忽略。即写入0~255范围的
  • void write(byte[] b)
    将b.length个字节从指定的byte数组写入此输出流。write(b)的常规协定是:应该与调用wite(b,0,b.length)的效果完全相同。
  • void write(byte[] b,int off,int len)
    将指定byte数组中从偏移量off开始的len个字节写入此输出流。
  • public void flush()throws IOException
    刷新此输出流并强制写出所有缓冲的输出字节,调用此方法指示应将这些字节立即写入它们预期的目标。
  • public void close throws IOException
    关闭此输岀流并释放与该流关联的所有系统资源。
Writer:
  • void write(int c)
    写入单个字符。要写入的字符包含在给定整数值的16个低位中,16高位被忽略。即写入0到65535之间的 Unicode码。
  • void write(char[] cbuf)
    写入字符数组
  • void write(char[] cbuf,int off,int len)
    写入字符数组的某一部分。从off开始,写入len个字符
  • void write(String str)
    写入字符串。
  • void write(String str,int off,int len)
    写入字符串的某一部分。
  • void flush()
    刷新该流的缓冲,则立即将它们写入预期目标。
  • public void close throws IOException
    关闭此输出流并释放与该流关联的所有系统资源

(四)输入、输出标准化过程

  1. 输入过程:

     ① 创建File类的对象,指明读取的数据的来源。(要求此文件一定要存在)
     ② 创建相应的输入流,将File类的对象作为参数,传入流的构造器中
     ③ 具体的读入过程:创建相应的byte[] 或 char[]。
     ④ 关闭流资源
     说明:程序中出现的异常需要使用try-catch-finally处理。
    
  2. 输出过程:

     ① 创建File类的对象,指明写出的数据的位置。(不要求此文件一定要存在)
     ② 创建相应的输出流,将File类的对象作为参数,传入流的构造器中
     ③ 具体的写出过程:write(char[]/byte[] buffer,0,len)
     ④ 关闭流资源
     说明:程序中出现的异常需要使用try-catch-finally处理。
    

三、节点流(文件流)

(一)文件字符流FileReader和FileWriter的使用

  1. 文件的输入
    从文件中读取到内存(程序)中

步骤:

1. 建立一个流对象,将已存在的一个文件加载进流 
	FileReader fr = new FileReader(new File("Test. txt"));
2. 创建一个临时存放数据的数组 
	char[] ch = new char[1024];
3.  调用流对象的读取方法将流中的数据读入到数组中。
	fr.read(ch);
4. 关闭资源。
	fr.close();

代码实例:

@Test
public void test2() {
    FileReader fr = null;
    try {
        //1.File类的实例化
        File file = new File("hello.txt");
        //2.FileReader流的实例化
        fr = new FileReader(file);
        //3.读入的操作
        char[] cbuffer = new char[5];
        int len;
        //read():返回读入的一个字符。如果达到文件末尾,返回-1
        //read(char[] cbuffer):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
        while((len = fr.read(cbuffer))!=-1){
            for(int i = 0;i<len;i++){
                System.out.print(cbuffer[i]);
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //4.流资源的关闭
        try {
            if(fr != null)
                fr.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

说明点:

1. read()的理解:返回读入的一个字符。如果达到文件末尾,返回-1
2. 异常的处理:为了保证流资源一定可以执行关闭操作。需要使用try-catch-finally处理
3. 读入的文件一定要存在,否则就会报FileNotFoundException。
  1. 文件的输出
    从内存(程序)到硬盘文件中

步骤:

1. 创建流对象,建立数据存放文件 
	File Writer fw = new File Writer(new File("Test.txt"))
2. 调用流对象的写入方法,将数据写入流 
	fw.write("HelloWord")
3. 关闭流资源,并将流中的数据清空到文件中。 
	fw.close();

代码实例:

@Test
public void test3() {
    FileWriter fw = null;
    try{
        //1.提供File类的对象,指明写出到的文件
        File file = new File("hello1.txt");
        //2.提供FileWriter的对象,用于数据的写出
        fw = new FileWriter(file,true);//参数为true,在原有文件基础上追加内容
        //3.写出的操作
        String str = "I have a dream!";
        fw.write(str+"\n");
        fw.write("334".toCharArray());
    }catch (Exception e){
        e.printStackTrace();
    }finally {
        //4.流资源的关闭
        if(fw != null) {
            try {
                fw.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

说明点:

1. 输出操作,对应的File可以不存在的。并不会报异常
2.
     1)File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件。
     2)File对应的硬盘中的文件如果存在:
            如果流使用的构造器是:FileWriter(file,false) / FileWriter(file):对原有文件的覆盖
            如果流使用的构造器是:FileWriter(file,true):不会对原有文件覆盖,而是在原有文件基础上追加内容

(二)文件字节流FileInputSteam和FileOutputSteam的使用

文件字节流操作与字符流操作类似,只是实例化对象操作和数据类型不同。

代码实例:

@Test
public void testFileInputStream(){
    FileInputStream fis = null;
    try {
        //1.实例化File类的对象,指明要操作的文件
        File file = new File("hello.txt");
        //2.提供具体的流
        fis = new FileInputStream(file);
        //3.数据的读入
        byte[] buffer = new byte[5];
        int len;//记录每次读取的字节的个数
        while((len = fis.read(buffer))!=-1){
            String str = new String(buffer,0,len);
            System.out.print(str);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //4.流的关闭
        try {
            if(fis!=null)
                fis.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

实现图片复制操作代码:

//实现对图片的复制操作
@Test
public void test1(){
    FileInputStream fis = null;
    FileOutputStream fos = null;
    try {
        File file1 = new File("one.jpg");
        File file2 = new File("two.jpg");
        fis = new FileInputStream(file1);
        fos = new FileOutputStream(file2);
        byte[] buffer = new byte[5];
        int len;
        while((len = fis.read(buffer)) != -1){
            fos.write(buffer,0,len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //注意两个流的关闭
        try {
            fis.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            fos.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

说明:

  //1.实例化File类的对象,指明要操作的文件
  File file = new File("hello.txt");
  //2.提供具体的流
  FileInputStream fis = new FileInputStream(file);

上面这两步可以合成一步写

  FileInputStream fis = new FileInputStream("hello.txt");

在这里插入图片描述

注意点:
  • 定义路径时,可以用“/”或“\”。
  • 输出操作,对应的File可以不存在的。并不会报异常。
  • File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件。
  • File对应的硬盘中的文件如果存在:
        如果流使用的构造器是:FileWriter(file,false) / FileWriter(file):对原有文件的覆盖。
        如果流使用的构造器是:FileWriter(file,true):不会对原有文件覆盖,而是在原有文件基础上追加内容。
  • 读取文件时,必须保证文件存在,否则会报异常。
  • 对于文本文件(.txt,.java,.c,.cpp),使用字符流处理
  • 对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,…),使用字节流处理,字节流也可以实现文本文件的复制,只要不在中间读取文件就不会出现乱码

四、缓冲流

(一)概述

概述:
  • 引入目的:提供流的读取、写入的速度
        为了提高数据读写的速度,Java API提供了带缓冲功能的流类,在使用这些流类
    时,会创建一个内部缓冲区数组,缺省使用8192个字节(8Kb)的缓冲区
    在这里插入图片描述
  • 处理流与节点流的对比图示Java之IO流总结_第5张图片
  • 缓冲流要“套接”在相应的节点流之上,根据数据操作单位可以把缓冲流分为:
        BufferedInputStream 和 BufferedOutputStream
        BufferedReader 和 BufferedWriter

说明:
  • 当读取数据时,数据按块读入缓冲区,其后的读操作则直接访问缓冲区。
  • 当使用 BufferedInputStream读取字节文件时,BufferedInputStream会一次性从文件中读取8192个(8Kb),存在缓冲区中,直到缓冲区装满了,才重新从文件中读取下一个8192个字节数组。
  • 向流中写入字节时,不会直接写到文件,先写到缓冲区中直到缓冲区写满,BufferedOutputStream才会把缓冲区中的数据一次性写到文件里。使用方法flush()可以强制将缓冲区的内容全部写入输出流。
  • 关闭流的顺序和打开流的顺序相反。只要关闭最外层流即可,关闭最外层流也会相应关闭内层节点流。
  • flush()方法的使用:手动将buffer中内容写入文件。
  • 如果是带缓冲区的流对象的close()方法,不但会关闭流,还会在关闭流之前刷新缓冲区,关闭后不能再写出。

(二)BufferInputStream和BufferOutputStream的使用

实现文件的复制实例代码:

//实现非文本文件的复制
@Test
public void BufferedStreamTest(){
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
        //1.实例化File类的对象,指明要操作的文件
        File srcFile = new File("one.jpg");
        //2.1创建节点流
        FileInputStream fis = new FileInputStream(srcFile);
        FileOutputStream fos = new FileOutputStream("two.jpg");//可以合并,构造方法中自动new一个File类型的对象
        //2.2创建缓冲流
        bis = new BufferedInputStream(fis);
        bos = new BufferedOutputStream(fos);
        //3.读取和写入的过程
        byte[] buffer = new byte[1024];
        int len;
        while((len = bis.read(buffer)) != -1){
            bos.write(buffer,0,len);
            bos.flush();//刷新缓冲区
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //4.资源关闭,
        //要求:要先关闭外层的流,再关闭内层的流
        //说明:在关闭外层流的同时,内层流也会自动的进行关闭。所以内层流的关闭,我们可以省略
        try {
            if(bis != null)
                bis.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            bos.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

注意:

1. 要先关闭外层的流,再关闭内层的流
2. 在关闭外层流的同时,内层流也会自动的进行关闭。所以内层流的关闭,我们可以省略

(三)BufferedReader和BufferedWriter的使用

实现文件的复制实例代码:

//使用BufferedReader和BufferedWriter实现文本文件的复制
@Test
public void test4(){
    BufferedReader br = null;
    BufferedWriter bw = null;
    try {
        //创建文件和相应的流
        br = new BufferedReader(new FileReader(new File("hello.txt")));
        bw = new BufferedWriter(new FileWriter(new File("hello1.txt")));
        //读写操作
        //方式一:
//            char[] cBuffer = new char[5];
//            int len;
//            while((len = br.read(cBuffer)) != -1){
//                bw.write(cBuffer,0,len);
//            }
        //方法二:
        String data;
        while((data = br.readLine()) != null){
            bw.write(data);//直接写入不包括换行符
            bw.newLine();//写入一个换行符
        }

    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //关闭资源
        try {
            if(br != null)
                br.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            if(bw != null)
                bw.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

五、转换流

(一)简介

  • 转换流提供了在字节流和字符流之间的转换
  • Java API提供了两个转换流:
        InputstreamReader:将 Inputstream转换为Reader,将一个字节的输入流转换为字符的输入流
        OutputStreamWriter:将 Writer转换为OutputStream,将一个字符的输出流转换为字节的输出流
  • 字节流中的数据都是字符时,转成字符流操作更高效。
  • 很多时候我们使用转换流来处理文件乱码问题。实现编码和解码的功能。

(二)InputStreamReader和OutputStreamWriter

  1. InputStreamReader

     InputStreamReader将一个字节的输入流转换为字符的输入流 解码:字节、字节数组 --->字符数组、字符串
     构造器:
     	public InputStreamReader(InputStream in)
     	public InputStreamReader(Inputstream in,String charsetName)//可以指定编码集
    
  2. OutputStreamWriter

     OutputStreamWriter将一个字符的输出流转换为字节的输出流 编码:字符数组、字符串 ---> 字节、字节数组
     构造器:
     	public OutputStreamWriter(OutputStream out)
     	public OutputStreamWriter(Outputstream out,String charsetName)//可以指定编码集
    

Java之IO流总结_第6张图片

代码实例:

//InputStreamReader的使用,实现字节的输入流到字符的输入流的转换
@Test
public void test1(){
    InputStreamReader isr = null;
    try {
        FileInputStream fis = new FileInputStream("hello.txt");
//          InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集
        //参数2指明了字符集,具体使用哪个字符集,取决于文件hello.txt保存时使用的字符集
        isr = new InputStreamReader(fis,"utf-8");//该编码为文本文件的编码方式,需要对文本文件解码成,字节文件
        char[] cBuffer = new char[5];
        int len;
        while((len = isr.read(cBuffer)) != -1){
            String str = new String(cBuffer,0,len);
            System.out.print(str);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            isr.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
//综合使用InputStreamReader和OutputStreamWriter,将utf-8文件复制成gbk编码文件
@Test
public void test2(){
    InputStreamReader isr = null;
    OutputStreamWriter osw = null;
    try {
        File file1 = new File("hello.txt");
        File file2 = new File("hello_gbk.txt");
        FileInputStream fis = new FileInputStream(file1);
        FileOutputStream fos = new FileOutputStream(file2);
        //使用utf-8进行解码
        isr = new InputStreamReader(fis,"utf-8");
        //使用gbk进行编码
        osw = new OutputStreamWriter(fos,"gbk");
        char[] cBuffer = new char[5];
        int len;
        while((len = isr.read(cBuffer)) != -1){
            String str = new String(cBuffer,0,len);
            System.out.print(str);
            osw.write(str);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            isr.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            osw.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

(三)编码集

六、标准输入、输出流

  1. 简介

     System.in:标准的输入流,默认从键盘输入
     System.out:标准的输出流,默认从控制台输出
    

Java之IO流总结_第7张图片

  1. 主要方法

     System类的setIn(InputStream is) 方式重新指定输入的流
     System类的setOut(PrintStream ps)方式重新指定输出的流。
    

代码实例:(从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作,
直至当输入“e”或者“exit”时,退出程序。)

public static void main(String[] args){
    BufferedReader br = null;
    try {
        InputStreamReader isr = new InputStreamReader(System.in);
        br = new BufferedReader(isr);
        String str;
        while(true){
            System.out.println("请输入字符串:");
            str = br.readLine();
            if("e".equals(str) || "exit".equals(str)){
                break;
            }
            //进行大小写转换一:
            for(int i = 0;i<str.length();i++){
                char c = str.charAt(i);
                if(c <= 'z' && c>='a'){
                    c = (char) (c-32);
                    System.out.print(c);
                }else{
                    System.out.print(c);
                }
            }
            System.out.println();
            //进行大小写转换二:
            String upperStr = str.toUpperCase();
            System.out.println(upperStr);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            br.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

设计实现Scanner类代码实例:

public class MyInput {
    // Read a string from the keyboard
    public static String readString() {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        // Declare and initialize the string
        String string = "";

        // Get the string from the keyboard
        try {
            string = br.readLine();

        } catch (IOException ex) {
            System.out.println(ex);
        }

        // Return the string obtained from the keyboard
        return string;
    }

    // Read an int value from the keyboard
    public static int readInt() {
        return Integer.parseInt(readString());
    }

    // Read a double value from the keyboard
    public static double readDouble() {
        return Double.parseDouble(readString());
    }

    // Read a byte value from the keyboard
    public static double readByte() {
        return Byte.parseByte(readString());
    }

    // Read a short value from the keyboard
    public static double readShort() {
        return Short.parseShort(readString());
    }

    // Read a long value from the keyboard
    public static double readLong() {
        return Long.parseLong(readString());
    }

    // Read a float value from the keyboard
    public static double readFloat() {
        return Float.parseFloat(readString());
    }
}

七、打印流,PrintStream和PrintWriter

说明:

  • 实现将基本数据类型的数据格式转化为 字符串输出
  • 打印流:PrintStream和PrintWriter

提供了一系列重载的print()和println()方法,用于多种数据类型的输出
PrintStream和PrintWriter的输出不会抛出IOException异常
PrintStream和PrintWriter有自动flush功能
PrintStream 打印的所有字符都使用平台的默认字符编码转换为字节。在需要写入字符而不是写入字节的情况下,应该使用 PrintWriter 类。
System.out返回的是PrintStream的实例

@Test
public void test4(){
    PrintStream ps = null;
    try {
        FileOutputStream fos = new FileOutputStream(new File("D:\\IO\\text.txt"));
        // 创建打印输出流,设置为自动刷新模式(写入换行符或字节 '\n' 时都会刷新输出缓冲区)
        ps = new PrintStream(fos, true);
        if (ps != null) {
            // 把标准输出流(控制台输出)改成文件
            System.setOut(ps);
        }
        for (int i = 0; i <= 255; i++) { // 输出ASCII字符
            System.out.print((char) i);//将输出到文件中
            if (i % 50 == 0) { // 每50个数据一行
                System.out.println(); // 换行
            }
        }
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } finally {
        if (ps != null) {
            ps.close();
        }
    }
}

八、数据流,DataInputStream 和 DataOutputStream

  • 为了方便地操作Java语言的基本数据类型和String的数据,可以使用数据流
  • 数据流有两个类:(用于读取和写出基本数据类型、String类的数据)
    DataInputStream 和 DataOutputStream,分别“套接”在 InputStream 和OutputStream 子类的流上
  • DataInputStream 中的方法
boolean readBoolean() byte readByte()
char readChar() float readFloat()
double readDouble() short readShort()
long readLong() int readInt()
String readUTF() void readFully(byte[] b)
  • DataOutputStream 中的方法
    将上述的方法的read改为相应的write即可
注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!

代码实例:

//将内存中的字符串、基本数据类型的变量写出到文件中
@Test
public void test3(){
    DataOutputStream dos = null;
    try { // 创建连接到指定文件的数据输出流对象
        dos = new DataOutputStream(new FileOutputStream("destData.dat"));
        dos.writeUTF("我爱北京天安门"); // 写UTF字符串
        dos.writeBoolean(false); // 写入布尔值
        dos.writeLong(1234567890L); // 写入长整数
        System.out.println("写文件成功!");
    } catch (IOException e) {
        e.printStackTrace();
    } finally { // 关闭流对象
        try {
            if (dos != null) {
                // 关闭过滤流时,会自动关闭它包装的底层节点流
                dos.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
//从文件中读取字符串、基本数据类型的变量
@Test
public void test4(){
    DataInputStream dis = null;
    try {
        dis = new DataInputStream(new FileInputStream("destData.dat"));
        String info = dis.readUTF();
        boolean flag = dis.readBoolean();
        long time = dis.readLong();
        System.out.println(info);
        System.out.println(flag);
        System.out.println(time);
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        if (dis != null) {
            try {
                dis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

九、对象流与序列化

在我们讲解对象输出流和对象输入流之前,我们首先要学习一下序列化与反序列化

(一)序列化与反序列化

序列化和反序列化:

  • 将一个特定的数据结构转换为一组字节的过程称之为序列化
  • 将一组字节转换为特定的数据结构的过程称之为反序列化

序列化的目的:

1)永久的保存对象,保存对象的字节序列到本地文件中;
2)通过序列化对象在网络中传递对象;
3)通过序列化对象在进程间传递对象。
  • 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。//当其它程序获取了这种二进制流,就可以恢复成原来的Java对象。
  • 序列化的好处在于可将任何实现了Serializable接口的对象转化为字节数据,使其在保存和传输时可被还原。
  • 序列化是RMI(Remote Method Invoke-远程方法调用)过程的参数和返回值都必须实现的机制,RMI是JavaEE的基础。因此序列化机制是JavaEE平台的基础。
  • 如果需要让某个对象支持序列化机制,则必须让对象所属的类及其属性是可序列化的,为了让某个类是可序列化的,该类必须实现如下两个接口之一。否则,会抛出 NotserializableEXception异常
  • Serializable
  • Externalizable
  • 凡是实现Serializable接口的类都有一个表示序列化版本标识符的静态变量:
  • private static final long serialVersionUID;
  • serialVersionUID用来表明类的不同版本间的兼容性。简言之,其目的是以序列化对象进行版本控制,有关各版本反序列化时是否兼容
  • 如果类没有显示定义这个静态常量,它的值是Java运行时环境根据类的内部细节自动生成的。若类的实例变量做了修改,serialVersionUID可能发生变化。故建议显式声明。
  • 简单来说,Java的序列化机制是通过在运行时判断类的serialversionUID来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的serialversionUID与本地相应实体类的serialversionUID进行比较,如果相同就认为是一致的,可以进行反序列化,否则就会出现序列化版本不一致的异常。(InvalidCastException)

而想要完成对象的输入输出,还必须依靠ObjectInputStream和ObjectOutputStream;

(二)对象流

  1. ObjectInputStream 和 ObjectOutputStream

     ObjectOutputStream:内存中的对象--->存储中的文件、通过网络传输出去:序列化过程
     ObjectInputStream:存储中的文件、通过网络接收过来 --->内存中的对象:反序列化过程
    
  2. 实现序列化的对象所属的类需要满足:

  1. 需要实现接口:Serializable(标识接口)
  2. 当前类提供一个全局常量:serialVersionUID(序列版本号)
  3. 除了当前Person类需要实现Serializable接口之外,还必须保证其内部所属性也必须是可序列化的。(默认情况下,基本数据类型可序列化)
  • 补充:ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量

代码实例:(序列化与反序列化)

public class ObjectInputOutputStreamTest {
    /*
    序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
    使用ObjectOutputStream实现
     */
    @Test
    public void test1(){
        ObjectOutputStream oos = null;
        try {
            oos = new ObjectOutputStream(new FileOutputStream("hello.txt"));
            oos.writeObject(new String("你好"));//写入一个String类型的对象
            oos.flush();//刷新操作
            oos.writeObject(new Person("张三",14,new Account(23.5)));
            oos.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                oos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    /*
    反序列化:将磁盘文件中的对象还原为内存中的一个java对象
    使用ObjectInputStream来实现
     */
    @Test
    public void test2(){
        ObjectInputStream ois = null;
        try {
            ois = new ObjectInputStream(new FileInputStream("hello.txt"));
            //读取文件中的对象
            String str = (String)ois.readObject();
            System.out.println(str);
            Person person = (Person)ois.readObject();
            System.out.println(person);
        } catch (IOException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } finally {
            try {
                ois.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

序列化对象:

/**
 * Person需要满足如下的要求,方可序列化
 * 1.需要实现接口:Serializable
 * 2.当前类提供一个全局常量:serialVersionUID
 * 3.除了当前Person类需要实现Serializable接口之外,还必须保证其内部所有属性
 *   也必须是可序列化的。(默认情况下,基本数据类型可序列化)
 * 补充:ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量
 */
public class Person implements Serializable {
    public static final long serialVersionUID = 434255442L;//随便取一个id
    private String name;
    private int age;
    private Account account;

    public Person(String name, int age, Account account) {
        this.name = name;
        this.age = age;
        this.account = account;
    }

    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", account=" + account +
                '}';
    }
}

class Account implements Serializable{
    public static final long serialVersionUID = 43425345442L;//访问权限随意
    private double balance;
    @Override
    public String toString() {
        return "Account{" +
                "balance=" + balance +
                '}';
    }
    public Account(double balance) {
        this.balance = balance;
    }
}

十、任意存取文件流RandomAccessFile

RandomAccessFile的使用:

  • RandomAccessFile 声明在java.io包下但直接继承于java.lang.Object类,实现了DataInput和DataOutput接口
  • RandomAccessFile既可以作为一个输入流,又可以作为一个输出流
    创建RandomAccessFile类实例需要指定一个mode参数,该参数指定RandomAccessFile的访问模式:
    1. r:以只读方式打开
    2. rw:打开以便读取和写入
    3. rwd:打开以便读取和写入;同步文件内容的更新
    4. rws:打开以便读取和写入;同步文件内容和元数据的更新
  • 如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。
  • 如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖)

代码实例:

  • 文件的读取和写出操作:
@Test
public void test1() {
    RandomAccessFile raf1 = null;
    RandomAccessFile raf2 = null;
    try {
        //1.创建对象,创建流
        raf1 = new RandomAccessFile(new File("test.jpg"),"r");
        raf2 = new RandomAccessFile(new File("test1.jpg"),"rw");
        //2.操作流
        byte[] buffer = new byte[1024];
        int len;
        while((len = raf1.read(buffer)) != -1){
            raf2.write(buffer,0,len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //3.关闭流
        if(raf1 != null){
            try {
                raf1.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if(raf2 != null){
            try {
                raf2.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}
//文件写入时,从头覆盖
@Test
public void test2() throws Exception{
    RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
    //初始文件为abcdef
    raf1.write("cd".getBytes());//执行完后文件变为:cdcdef
    raf1.close();
}
  • 使用RandomAccessFile实现数据的插入效果:
@Test
public void test3(){
    RandomAccessFile raf = null;
    try {
        raf = new RandomAccessFile("hello.txt","rw");
        raf.seek(3);//将指针调到角标为3的位置
        StringBuilder builder = new StringBuilder((int)new File("hello.txt").length());
        byte[] buffer = new byte[20];
        int len;
        while((len = raf.read(buffer)) != -1){
            builder.append(new String(buffer,0,len));
        }
        raf.seek(3);
        raf.write("xyz".getBytes());//插入xyz
        raf.write(builder.toString().getBytes());
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            raf.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

十一、NIO和NIO2简介

1.NIO的使用说明:

  • Java NIO (New IO,Non-Blocking IO)是从Java 1.4版本开始引入的一套新的IO API,可以替代标准的Java IO AP。

  • NIO与原来的IO同样的作用和目的,但是使用的方式完全不同,NIO支持面向缓冲区的(IO是面向流的)、基于通道的IO操作。

  • NIO将以更加高效的方式进行文件的读写操作。

  • JDK 7.0对NIO进行了极大的扩展,增强了对文件处理和文件系统特性的支持,称他为 NIO.2。

      Java API中提供了两套NIO,一套是针对标准输入输出NIO,另一套就是网络编程NIO
      |-----java.nio.channels.Channel
            |---- FileChannel:处理本地文件
            |---- SocketChannel:TCP网络编程的客户端的Channel
            |---- ServerSocketChannel:TCP网络编程的服务器端的Channel
            |---- DatagramChannel:UDP网络编程中发送端和接收端的Channel
    

2.NIO. 2的到来

  • 随着 JDK 7 的发布,Java对NIO进行了极大的扩展,增强了对文件处理和文件系统特性的支持,以至于我们称他们为 NIO.2。因为 NIO 提供的一些功能,NIO已经成为文件处理中越来越重要
    的部分

NIO.2 中Path 、Paths 、Files 类

  • 早期的Java只提供了一个File类来访问文件系统,但File类的功能比较有限,所提供的方法性能也不高。而且,大多数方法在出错时仅返回失败,并不会提供异常信息。
  • NIO.2为了弥补这种不足,引入了Path接口,代表一个平台无关的平台路径,描述了目录结构中文件的位置。Path可以看成是File类的升级版本,实际引用的资源也可以不存在。
    Path替换原有的File类
  • 在以前IO操作都是这样写的:

    	import java.io.File
    	File file = new File("index.html");
    
  • 但在Java7中,我们可以这样写:

    	import java.nio.file.Path;
    	import java.nio.file.Paths;
    	Path path = Paths.get("index. html");
    
  • 同时,NIO.2在java.nio.file包下还提供了Files、Paths工具类,Files包含
    了大量静态的工具方法来操作文件;Paths则包含了两个返回Path的静态
    工厂方法。

3.Paths的使用:

  • Paths类提供的静态get()方法用来获取Path对象:
  • static Path get(String first, String….more):用于将多个字符串串连成路径
  • static Path get(URI uri):返回指定uri对应的Path路径
@Test
public void test1(){
    Path path1 = Paths.get("hello.txt");//new File(String filepath)
    Path path2 = Paths.get("E:\\", "test\\test1\\haha.txt");//new File(String parent,String filename);
    Path path3 = Paths.get("E:\\", "test");
    System.out.println(path1);
    System.out.println(path2);
    System.out.println(path3);
}

常用方法:

  • String toString() : 返回调用 Path 对象的字符串表示形式
  • boolean startsWith(String path) : 判断是否以 path 路径开始
  • boolean endsWith(String path) : 判断是否以 path 路径结束
  • boolean isAbsolute() : 判断是否是绝对路径
  • Path getParent() :返回Path对象包含整个路径,不包含 Path 对象指定的文件路径
  • Path getRoot() :返回调用 Path 对象的根路径
  • Path getFileName() : 返回与调用 Path 对象关联的文件名
  • int getNameCount() : 返回Path 根目录后面元素的数量
  • Path getName(int idx) : 返回指定索引位置 idx 的路径名称
  • Path toAbsolutePath() : 作为绝对路径返回调用 Path 对象
  • Path resolve(Path p) :合并两个路径,返回合并后的路径对应的Path对象
  • File toFile(): 将Path转化为File类的对象
@Test
public void test2() {
    Path path1 = Paths.get("d:\\", "nio\\nio1\\nio2\\hello.txt");
    Path path2 = Paths.get("hello.txt");

    //		String toString() : 返回调用 Path 对象的字符串表示形式
    System.out.println(path1);

    //		boolean startsWith(String path) : 判断是否以 path 路径开始
    System.out.println(path1.startsWith("d:\\nio"));
    //		boolean endsWith(String path) : 判断是否以 path 路径结束
    System.out.println(path1.endsWith("hello.txt"));
    //		boolean isAbsolute() : 判断是否是绝对路径
    System.out.println(path1.isAbsolute() + "~");
    System.out.println(path2.isAbsolute() + "~");
    //		Path getParent() :返回Path对象包含整个路径,不包含 Path 对象指定的文件路径
    System.out.println(path1.getParent());
    System.out.println(path2.getParent());
    //		Path getRoot() :返回调用 Path 对象的根路径
    System.out.println(path1.getRoot());
    System.out.println(path2.getRoot());
    //		Path getFileName() : 返回与调用 Path 对象关联的文件名
    System.out.println(path1.getFileName() + "~");
    System.out.println(path2.getFileName() + "~");
    //		int getNameCount() : 返回Path 根目录后面元素的数量
    //		Path getName(int idx) : 返回指定索引位置 idx 的路径名称
    for (int i = 0; i < path1.getNameCount(); i++) {
        System.out.println(path1.getName(i) + "*****");
    }

    //		Path toAbsolutePath() : 作为绝对路径返回调用 Path 对象
    System.out.println(path1.toAbsolutePath());
    System.out.println(path2.toAbsolutePath());
    //		Path resolve(Path p) :合并两个路径,返回合并后的路径对应的Path对象
    Path path3 = Paths.get("d:\\", "nio");
    Path path4 = Paths.get("nioo\\hi.txt");
    path3 = path3.resolve(path4);
    System.out.println(path3);

    //		File toFile(): 将Path转化为File类的对象
    File file = path1.toFile();//Path--->File的转换
    Path newPath = file.toPath();//File--->Path的转换
}

4.Files类
java.nio.file.Files用于操作文件或目录的工具类

Files类常用方法:

  • Path copy(Path src, Path dest, CopyOption … how) : 文件的复制
    要想复制成功,要求path1对应的物理上的文件存在。path1对应的文件没有要求。
    Files.copy(path1, path2, StandardCopyOption.REPLACE_EXISTING);
  • Path createDirectory(Path path, FileAttribute … attr) : 创建一个目录
    要想执行成功,要求path对应的物理上的文件目录不存在。一旦存在,抛出异常。
  • Path createFile(Path path, FileAttribute … arr) : 创建一个文件
    要想执行成功,要求path对应的物理上的文件不存在。一旦存在,抛出异常。
  • void delete(Path path) : 删除一个文件/目录,如果不存在,执行报错
  • void deleteIfExists(Path path) : Path对应的文件/目录如果存在,执行删除.如果不存在,正常执行结束
  • Path move(Path src, Path dest, CopyOption…how) : 将 src 移动到 dest 位置
    要想执行成功,src对应的物理上的文件需要存在,dest对应的文件没有要求。
  • long size(Path path) : 返回 path 指定文件的大小
@Test
public void test1() throws IOException{
    Path path1 = Paths.get("d:\\nio", "hello.txt");
    Path path2 = Paths.get("atguigu.txt");

    //		Path copy(Path src, Path dest, CopyOption … how) : 文件的复制
    //要想复制成功,要求path1对应的物理上的文件存在。path1对应的文件没有要求。
    //		Files.copy(path1, path2, StandardCopyOption.REPLACE_EXISTING);

    //		Path createDirectory(Path path, FileAttribute … attr) : 创建一个目录
    //要想执行成功,要求path对应的物理上的文件目录不存在。一旦存在,抛出异常。
    Path path3 = Paths.get("d:\\nio\\nio1");
    //		Files.createDirectory(path3);

    //		Path createFile(Path path, FileAttribute … arr) : 创建一个文件
    //要想执行成功,要求path对应的物理上的文件不存在。一旦存在,抛出异常。
    Path path4 = Paths.get("d:\\nio\\hi.txt");
    //		Files.createFile(path4);

    //		void delete(Path path) : 删除一个文件/目录,如果不存在,执行报错
    //		Files.delete(path4);

    //		void deleteIfExists(Path path) : Path对应的文件/目录如果存在,执行删除.如果不存在,正常执行结束
    Files.deleteIfExists(path3);

    //		Path move(Path src, Path dest, CopyOption…how) : 将 src 移动到 dest 位置
    //要想执行成功,src对应的物理上的文件需要存在,dest对应的文件没有要求。
    //		Files.move(path1, path2, StandardCopyOption.ATOMIC_MOVE);

    //		long size(Path path) : 返回 path 指定文件的大小
    long size = Files.size(path2);
    System.out.println(size);

}

Files类常用方法:用于判断

  • boolean exists(Path path, LinkOption … opts) : 判断文件是否存在
  • boolean isDirectory(Path path, LinkOption … opts) : 判断是否是目录不要求此path对应的物理文件存在。
  • boolean isRegularFile(Path path, LinkOption … opts) : 判断是否是文件
  • boolean isHidden(Path path) : 判断是否是隐藏文件,要求此path对应的物理上的文件需要存在。才可判断是否隐藏。否则,抛异常。
  • boolean isReadable(Path path) : 判断文件是否可读
  • boolean isWritable(Path path) : 判断文件是否可写
  • boolean notExists(Path path, LinkOption … opts) : 判断文件是否不存在

代码示例:

@Test
public void test2() throws IOException{
    Path path1 = Paths.get("d:\\nio", "hello.txt");
    Path path2 = Paths.get("atguigu.txt");
    //		boolean exists(Path path, LinkOption … opts) : 判断文件是否存在
    System.out.println(Files.exists(path2, LinkOption.NOFOLLOW_LINKS));

    //		boolean isDirectory(Path path, LinkOption … opts) : 判断是否是目录
    //不要求此path对应的物理文件存在。
    System.out.println(Files.isDirectory(path1, LinkOption.NOFOLLOW_LINKS));

    //		boolean isRegularFile(Path path, LinkOption … opts) : 判断是否是文件

    //		boolean isHidden(Path path) : 判断是否是隐藏文件
    //要求此path对应的物理上的文件需要存在。才可判断是否隐藏。否则,抛异常。
    //		System.out.println(Files.isHidden(path1));

    //		boolean isReadable(Path path) : 判断文件是否可读
    System.out.println(Files.isReadable(path1));
    //		boolean isWritable(Path path) : 判断文件是否可写
    System.out.println(Files.isWritable(path1));
    //		boolean notExists(Path path, LinkOption … opts) : 判断文件是否不存在
    System.out.println(Files.notExists(path1, LinkOption.NOFOLLOW_LINKS));
}

Files类常用方法:用于操作内容

  • InputStream newInputStream(Path path, OpenOption…how):获取 InputStream 对象
  • OutputStream newOutputStream(Path path, OpenOption…how) : 获取 OutputStream 对象
  • SeekableByteChannel newByteChannel(Path path, OpenOption…how) : 获取与指定文件的连接,how 指定打开方式。
  • DirectoryStream newDirectoryStream(Path path) : 打开 path 指定的目录
    代码实例:
@Test
public void test3() throws IOException{
    Path path1 = Paths.get("d:\\nio", "hello.txt");

    //		InputStream newInputStream(Path path, OpenOption…how):获取 InputStream 对象
    InputStream inputStream = Files.newInputStream(path1, StandardOpenOption.READ);

    //		OutputStream newOutputStream(Path path, OpenOption…how) : 获取 OutputStream 对象
    OutputStream outputStream = Files.newOutputStream(path1, StandardOpenOption.WRITE,StandardOpenOption.CREATE);


    //		SeekableByteChannel newByteChannel(Path path, OpenOption…how) : 获取与指定文件的连接,how 指定打开方式。
    SeekableByteChannel channel = Files.newByteChannel(path1, StandardOpenOption.READ,StandardOpenOption.WRITE,StandardOpenOption.CREATE);

    //		DirectoryStream  newDirectoryStream(Path path) : 打开 path 指定的目录
    Path path2 = Paths.get("e:\\teach");
    DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path2);
    Iterator<Path> iterator = directoryStream.iterator();
    while(iterator.hasNext()){
        System.out.println(iterator.next());
    }
}

你可能感兴趣的:(JAVA,stream,IO流,javaSE)