编程语言
首页 > 编程语言> > JavaIO流

JavaIO流

作者:互联网

JavaIO流

File类的使用

如何创建File类的实例

说明:

IDEA中:

Eclipse中:

路径分隔符

常用方法

**File类的获取功能 **

代码举例一:

File file1 = new File("hello.txt");	//文件存在
File file2 = new File("C:\\Users\\17527\\Desktop\\hi.txt");	//文件不存在

//此时的调用都是内存层面的调用,不涉及硬盘层面的,所以没有文件也不会报任何错误
System.out.println(file1.getAbsolutePath());
System.out.println(file1.getPath());
System.out.println(file1.getName());
System.out.println(file1.getParent());
System.out.println(file1.length());
System.out.println(new Date(file1.lastModified()));

System.out.println("***************************");

System.out.println(file2.getAbsolutePath());
System.out.println(file2.getPath());
System.out.println(file2.getName());
System.out.println(file2.getParent());
System.out.println(file2.length());
System.out.println(file2.lastModified());

输出如下:

E:\Project\java\IdeaProjects\workspace_idea1\JavaSenior\day08\hello.txt
hello.txt
hello.txt
null
10
Tue Apr 13 15:34:13 CST 2021
***************************
C:\Users\17527\Desktop\hi.txt
C:\Users\17527\Desktop\hi.txt
hi.txt
C:\Users\17527\Desktop
0
0

代码举例二:

File file = new File("E:\\Picture");

String[] list = file.list();
for (String str: list){
    System.out.println(str);
}

File[] files = file.listFiles();
for (File f : files){
    System.out.println(f);
}

输出如下:

1607663557663.jpg
game
QQ浏览器截图
Typora
图片素材
壁纸
截图
E:\Picture\1607663557663.jpg
E:\Picture\game
E:\Picture\QQ浏览器截图
E:\Picture\Typora
E:\Picture\图片素材
E:\Picture\壁纸
E:\Picture\截图

File类的重命名功能

比如:file1.renameTo(file2)为例:

​ 要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在。

File file1 = new File("hello.txt");
File file2 = new File("C:\\Users\\17527\\Desktop\\hi.txt");

boolean b = file1.renameTo(file2);
System.out.println(b);

File类的判断功能

File类的创建功能

注意事项:如果你创建文件或者文件目录没有写盘符路径,那么,默认在项目 路径下。

上面的三个方法是真正意义上创建文件的方法

File类的删除功能

删除注意事项: Java中的删除不走回收站。

要删除一个文件目录,请注意该文件目录内不能包含文件或者文件目录

在这里插入图片描述
总结:

IO流原理及流的分类

Java IO原理

流的分类

在这里插入图片描述
在这里插入图片描述

IO流体系

在这里插入图片描述

分辨流看后面

读取数据(字符流)

将day09下的hello.txt文件内容读入程序中,并输出到控制台

说明点:

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

读取数据的规范步骤:

  1. File类的实例化
  2. FileReader流的实例化
  3. 读入的操作
  4. 资源的关闭
//对read()操作升级:使用read的重载方法
@Test
public void testFileReader1(){
    FileReader fileReader = null;
    try {
        //1.File类的实例化
        File file = new File("hello.txt");

        //2.FileReader流的实例化
        fileReader = new FileReader(file);

        //3.读入的操作
        //read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
        //比如这个例子第一次读入5个,len就是5,第二次读入5个,len就是5,第三次读入3个,len就为3
        char[] cbuf = new char[5];
        int len;
        while ((len = fileReader.read(cbuf)) != -1){
            //错误的写法:
            //                for (int i = 0;i < cbuf.length;i++){
            //                    System.out.print(cbuf[i]);    //helloWorld123ld
            //                }
            //正确的写法:
            //                for (int i = 0;i < len;i++){
            //                    System.out.print(cbuf[i]);
            //                }

            //方式二:
            //错误的写法,对应着方式一的错误的写法
            //                String str = new String(cbuf);
            //                System.out.print(str);  helloWorld123ld
            //正确的写法:
            String str = new String(cbuf,0,len);
            System.out.print(str);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (fileReader != null)
            //4.资源的关闭
        {
            try {
                fileReader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

写出数据(字符流)

写出数据的步骤规范:

  1. 提供File类的对象,指明写出到的文件
  2. 提供FileWriter的对象,用于数据的写出
  3. 写出的操作
  4. 流资源的关闭
@Test
public void testFileWriter() {
    FileWriter fileWriter = null;
    try {
        //1.提供File类的对象,指明写出的文件
        File file = new File("hello1.txt");

        //2.提供FileWriter的对象,用于数据的写出
        fileWriter = new FileWriter(file, true);

        //3.写出的操作
        fileWriter.write("I hava a dream!\n");
        fileWriter.write("you need to have a dream!");
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (fileWriter != null) {
            //4.流资源的关闭
            try {
                fileWriter.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

说明:

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

文件的读取与写入(复制操作)

@Test
public void testFileReaderFileWriter() {
    FileReader fileReader = null;
    FileWriter fileWriter = null;
    try {
        //1.创建File类的对象,指明读入和写出的文件
        File srcFile = new File("hello.txt");
        File descFile = new File("hello2.txt");

        //不能使用字符流来处理图片等字节数据
//        File srcFile = new File("1607663557663.jpg");
//        File descFile = new File("1607.jpg");


        //2.创建输入流和输出流的对象
        fileReader = new FileReader(srcFile);
        fileWriter = new FileWriter(descFile);

        //3.数据的读入和写出操作
        char[] cbuf = new char[5];
        int len;    //记录每次读入到cbuf数组中的字符的个数
        while ((len = fileReader.read(cbuf)) != -1) {
            //每次写出len个字符
            fileWriter.write(cbuf, 0, len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //4.关闭流资源
        //方式一:
//            try {
//                if (fileReader != null)
//                    fileReader.close();
//            } catch (IOException e) {
//                e.printStackTrace();
//            } finally {
//                try {
//                    if (fileReader != null)
//                        fileWriter.close();
//                } catch (IOException e) {
//                    e.printStackTrace();
//                }
//            }

        //方式二:
        try {
            if (fileReader != null)
                fileReader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            if (fileReader != null)
                fileWriter.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

这里注意处理两个流资源的关闭可以用两个try-catch。因为try-catch是等于真正的处理掉了异常,所以后面的代码一样会执行

字节流

实现对图片的复制操作

@Test
public void testFileInputOutoutSteam() {
    FileInputStream fileInputStream = null;
    FileOutputStream fileOutputStream = null;
    try {
        File srcFile = new File("1607663557663.jpg");
        File destFile = new File("11111111.jpg");

        fileInputStream = new FileInputStream(srcFile);
        fileOutputStream = new FileOutputStream(destFile);

        byte[] buffer = new byte[5];
        int len;
        while ((len = fileInputStream.read(buffer)) != -1) {
            fileOutputStream.write(buffer, 0, len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {

        try {
            if (fileInputStream != null)
                fileInputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            if (fileOutputStream != null)
                fileOutputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

指定路径下文件的复制

public void copyFile(String srcPath, String destPath) {
    FileInputStream fis = null;
    FileOutputStream fos = null;
    try {
        //
        File srcFile = new File(srcPath);
        File destFile = new File(destPath);

        //
        fis = new FileInputStream(srcFile);
        fos = new FileOutputStream(destFile);

        //复制的过程
        byte[] buffer = new byte[1024];
        int len;
        while ((len = fis.read(buffer)) != -1) {
            fos.write(buffer, 0, len);
        }

    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (fos != null) {
            //
            try {
                fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if (fis != null) {
            try {
                fis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
    }


}

@Test
public void testCopyFile() {

    long start = System.currentTimeMillis();

    String srcPath = "C:\\Users\\17527\\Desktop\\不知火.mp4";
    String destPath = "C:\\Users\\17527\\Desktop\\不知火1.mp4";


//        String srcPath = "hello.txt";
//        String destPath = "hello3.txt";

    copyFile(srcPath, destPath);


    long end = System.currentTimeMillis();

    System.out.println("复制操作花费的时间为:" + (end - start));//2429

}
}

结论:

  1. 对于文本文件(.txt,.java,.c,.cpp),使用字符流处理
  2. 对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,…),使用字节流处理
    • 字节流也可以来实现文本文件的复制,因为这里复制操作没有经过控制台

缓冲流(处理流的一种)

在这里插入图片描述
代码举例:

public class BufferedTest {

    /*
    实现对非文本文件的复制
     */
    @Test
    public void BufferedSteamTest(){
        FileInputStream fileInputStream = null;
        FileOutputStream fileOutputStream = null;
        BufferedInputStream bufferedInputStream = null;
        BufferedOutputStream bufferedOutputStream = null;

        try {
            //1.造文件
            File srcFile = new File("1607663557663.jpg");
            File destFle = new File("2222222.jpg");

            //2.造流
            //2.1 造节点流
            fileInputStream = new FileInputStream(srcFile);
            fileOutputStream = new FileOutputStream(destFle);
            //2.2 造缓冲流
            bufferedInputStream = new BufferedInputStream(fileInputStream);
            bufferedOutputStream = new BufferedOutputStream(fileOutputStream);

            //3.复制的细节:读取、写入的过程
            byte[] buffer = new byte[10];
            int len;
            while ((len = bufferedInputStream.read(buffer)) != -1){
                bufferedOutputStream.write(buffer,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            //4.资源关闭
            //要求:先关闭外层的流,再关闭内层的流
            try {
                if(bufferedInputStream != null)
                bufferedInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if (bufferedOutputStream != null)
                bufferedOutputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略不写。
//        fileInputStream.close();
//        fileOutputStream.close();
        }
    }


    //实现文件复制的方法
    public void copyFileWithBuffered(String srcPath,String destPath){
        FileInputStream fileInputStream = null;
        FileOutputStream fileOutputStream = null;
        BufferedInputStream bufferedInputStream = null;
        BufferedOutputStream bufferedOutputStream = null;

        try {
            //1.造文件
            File srcFile = new File(srcPath);
            File destFle = new File(destPath);

            //2.造流
            //2.1 造节点流
            fileInputStream = new FileInputStream(srcFile);
            fileOutputStream = new FileOutputStream(destFle);
            //2.2 造缓冲流
            bufferedInputStream = new BufferedInputStream(fileInputStream);
            bufferedOutputStream = new BufferedOutputStream(fileOutputStream);

            //3.复制的细节:读取、写入的过程
            byte[] buffer = new byte[1024];
            int len;
            while ((len = bufferedInputStream.read(buffer)) != -1){
                bufferedOutputStream.write(buffer,0,len);

//                bufferedOutputStream.flush();//刷新缓冲区

            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            //4.资源关闭
            //要求:先关闭外层的流,再关闭内层的流
            try {
                if(bufferedInputStream != null)
                    bufferedInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if (bufferedOutputStream != null)
                    bufferedOutputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略不写。
//        fileInputStream.close();
//        fileOutputStream.close();

        }
    }

    @Test
    public void test(){
        long start = System.currentTimeMillis();
        copyFileWithBuffered("C:\\Users\\17527\\Desktop\\不知火.mp4","C:\\Users\\17527\\Desktop\\不知火2.mp4");
        long end = System.currentTimeMillis();
        System.out.println("花费的时间为:" + (end - start));  //652
    }


    /*
    使用BufferedReader和BuferedWriter实现文本文件的复制
     */
    @Test
    public void testBufferedReaderBufferedWriter(){
        BufferedReader br = null;
        BufferedWriter bw = null;
        try {
            //创建文件和相应的流
            br = new BufferedReader(new FileReader(new File("dbcp.txt")));
            bw = new BufferedWriter(new FileWriter(new File("dbcp1.txt")));

            //读写操作
            //方式一:使用char[]数组
//            char[] cbuf = new char[1024];
//            int read;
//            while ((read = br.read(cbuf)) != -1){
//                bw.write(cbuf,0,read);
//            }

            //方式二:使用String
            String data;
            while ((data = br.readLine()) !=null){  //readLine()一次读取一行数据,但是不会换行
                //方法一:
//                bw.write(data + "\n");//data中不包含换行符
                //方法二:
                bw.write(data);//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();
            }
        }


    }


}

readLine():一次读取一行数据,但是不会换行—> 在BufferedReader中可用

实现图片加密操作

byte[] buffer = new byte[1024];
            int len;
            while ((len = fi.read(buffer)) != -1) {
                //字节数组进行修改
                //错误的:这里修改的是新的变量,并不会对数组进行修改
    //            for (byte b:buffer){
    //                b = (byte)(b ^ 5);
    //            }
                //正确的:
                for (int i = 0; i < len; i++) {
                    buffer[i] = (byte)(buffer[i] ^ 5);
                }
                fo.write(buffer, 0, len);

m ^ n ^ n = n,所以解密过程就是把需要解密的文件再^5(加密)一次即可

转换流(处理流的一种)

InputStreamReader

OutputStreamWriter

代码举例:

/*
此时处理异常的话,仍然应该使用try-catch-finally
InputStreamReader的使用,实现字节的输入流到字符的输入流的转换
 */
@Test
public void test1() throws IOException {
    FileInputStream fis = new FileInputStream("dbcp.txt");
//        InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集,当前为utf-8
    //参数2指明了字符集,具体使用哪个字符集,取决于文件dbcp.txt保存时的字符集
    InputStreamReader isr = new InputStreamReader(fis,"UTF-8");

    char[] cbuf = new char[20];
    int len;
    while ((len = isr.read(cbuf)) != -1){
        System.out.print(new String(cbuf,0,len));
    }

    isr.close();

}

在这里插入图片描述

/*
综合使用InputStreamReader和OutputStreamWriter
 */
@Test
public void test2() throws IOException {

    File file1 = new File("dbcp.txt");
    File file2 = new File("dbcp_gdk.txt");

    FileInputStream fis = new FileInputStream(file1);
    FileOutputStream fos = new FileOutputStream(file2);

    InputStreamReader isr = new InputStreamReader(fis,"utf-8");
    OutputStreamWriter osw = new OutputStreamWriter(fos,"gbk");

    //读写过程
    char[] cbuf = new char[20];
    int len;
    while ((len = isr.read(cbuf)) != -1){
        osw.write(cbuf,0,len);
    }

    osw.close();
    isr.close();

}

对象流

对象的序列化

强调:如果某个类的属性不是基本数据类型或 String 类型,而是另一个 引用类型,那么这个引用类型必须是可序列化的,否则拥有该类型的 Field 的类也不能序列化

标签:String,len,JavaIO,File,new,null,public
来源: https://blog.csdn.net/asdfghsadg/article/details/120638467