Java高级编程——IO流

Java高级编程——IO流

目录

Java高级编程——IO流

一、File类的使用

 1.概念

 2.常用构造器

 3.路径分隔符 

 4.常用方法

          上代码

练习

 答案在此查看

二、IO流原理及流的分类

 1.Java IO原理

 2.流的分类

 3.IO 流体系

 4.节点流和处理流

 5.InputStream & Reader 

 5.1.InputStream

 5.2.Reader

  6.OutputStream & Writer

 6.1.OutputStream

 6.2.Writer

上代码

三、节点流(或文件流)

 1.读取文件

 2.写入文件

 3.注意点

 上代码

四、缓冲流

1.概念

         上代码

课后练习

1.文件加密和解密

2.获取文本上每个字符出现的次数

五、转换流

 1.概念

 2.补充:字符编码

               上代码

六、标准输入、输出流 (了解)

1.概念

七、打印流 (了解)

1.概念

八、数据流 (了解)

1.概念

标准输入、输出流 打印流和数据流(代码演示)

练习

 代码

九、对象流

 1.处理流之六:对象流

 2.对象的序列化

 3.使用对象流序列化对象

           上代码

十、随机存取文件流

 1.RandomAccessFile 类

 2.读取文件内容

 3.写入文件内容

 4.流的基本应用小节

           上代码

十一、NIO.2 中Path、Paths、Files类的使用

 1.Java NIO 概述

 2.NIO. 2

 3.Path、Paths和Files核心API

 4.Path接口

 上代码

 5.Files 类

 上代码

6.使用第三方jar包读取写入数据

 上代码


一、File类的使用

1.概念

 2.常用构造器

3.路径分隔符 

 4.常用方法

 上代码

package com.tyl.java3;

import org.junit.Test;

import java.io.File;
import java.io.IOException;
import java.util.Date;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java3
 * @Project:workidea
 * @Filename: FileTest
 * @create 2023-06-12 18:35
 *
 *  FiLe类的使用
 * 1.FiLe 类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
 * 2.FiLe 类声明在ava.io包下
 * 3.File 类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,
 *        并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用 IO 流来完成。
 * 4.后续 File类的对象常会作为参数传递到流的构造器中,指明读取或写入的"终点".
 */
public class FileTest {
    /*
    1.如何创建FiLe类的实例
        File(String filePath)
        File(String parentPath, String childPath)
        File(File parentFile, String childPath)

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

    3.
    3.路径分隔符
    windows: \\
    unix: /

     */
    @Test
    public void test1(){
        //构造器1
        File file1 = new File("hello.txt"); //相对于当前 nodule
        File file2 = new File("D:\\developer_tools\\java\\IDEA\\ideaproject\\workidea\\day08\\he.txt");

        System.out.println(file1);
        System.out.println(file2);

        // 构造器2
        File file3 = new File("D:\\developer_tools", "java");
        System.out.println(file3);

        // 构造器3
        File file4 = new File(file3, "hi.txt");
        System.out.println(file4);
    }
    
    /*
     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("D:\\developer_tools\\java\\IDEA\\io\\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());
    }

    @Test
    public void test3(){
        File file1 = new File("D:\\developer_tools\\pythonProject");
        String[] list = file1.list();
        for(String s : list){
            System.out.println(s);
        }

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

    /*
     File类的重命名功能
     public boolean renameTo(File dest): 把文件重命名为指定的文件路径
        比如:fiLe1.rename To(file2)为例:
        要想保证返回true,需要fLe1在硬盘中是存在的,且fiLe2不能在硬盘中存在。

     */
    @Test
    public void test4(){
        File file1 = new File("hello.txt");
        File file2 = new File("D:\\developer_tools\\java\\IDEA\\io\\hi.txt");

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

    }

    /*
     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("D:\\developer_tools\\java\\IDEA\\io\\hi.txt");
        file1 = new File("hello.txt");

        System.out.println(file1.isDirectory());
        System.out.println(file1.isFile());
        System.out.println(file1.exists());
        System.out.println(file1.canRead());
        System.out.println(file1.canWrite());
        System.out.println(file1.isHidden());

        System.out.println("*****************************");
        File file2 = new File("D:\\developer_tools\\java\\IDEA\\io");
        file2 = new File("D:\\developer_tools\\java\\IDEA\\io111");
        System.out.println(file2.isDirectory());
        System.out.println(file2.isFile());
        System.out.println(file2.exists());
        System.out.println(file2.canRead());
        System.out.println(file2.canWrite());
        System.out.println(file2.isHidden());

    }

    /*
    创建硬盘中对应的文件或文件目录:
     public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
     public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
     public boolean mkdirs() :创建文件目录。如果上层文件目录不存在,一并创建

    删除磁盘中的文件或文件目录
     public boolean delete():删除文件或者文件夹
        删除注意事项:
        Java中的删除不走回收站。
        要删除一个文件目录,请注意该文件目录内不能包含文件或者文件目录
     */
    @Test
    public void test6() throws IOException {


        File file1 = new File("hi.txt");
        if(!file1.exists()){
            // 文件的创建
            file1.createNewFile();
            System.out.println("创建成功");
        }else { // 文件存在
            file1.delete();
            System.out.println("删除成功");
        }
    }


    @Test
    public void test7(){
        //文件目录的创建
        File file1 = new File("D:\\developer_tools\\java\\IDEA\\io\\io1\\io3");
        boolean mkdir = file1.mkdir();
        if(mkdir){
            System.out.println("创建成功1");
        }

        File file2 = new File("D:\\developer_tools\\java\\IDEA\\io\\io1\\io4");
        boolean mkdir1 = file2.mkdirs();
        if(mkdir1){
            System.out.println("创建成功2");
        }

        //要想删除成功,io4文件目录下不能有子目录或文件
//        File file3 = new File("D:\\developer_tools\\java\\IDEA\\io\\io1\\io4");
        File file3 = new File("D:\\developer_tools\\java\\IDEA\\io\\io1");
        System.out.println(file3.delete());

    }
}

练习

 答案在此查看

二、IO流原理及流的分类

1.Java IO原理

 2.流的分类

 3.IO 流体系

 4.节点流和处理流

5.InputStream & Reader 

 5.1.InputStream

 5.2.Reader

 6.OutputStream & Writer

 6.1.OutputStream

 6.2.Writer

上代码

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: FileReaderWriterTest
 * @create 2023-06-13 17:21
 *
 * 一、 流的分类:
 * 1.操作数据单位:字节流、字符流
 * 2.数据的流向:输入流、输出流
 * 3.流的角色:节点流、处理流
 *
 * 二、 流的体系结构
         * 抽象基类      节点流 (或文件流)                                   缓冲流(处理流的一种)
         * 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[] chuf))                     BufferedReader  (read(char[] chuf))
         * Writer        Fileriter  (write(char[] chuf,0,len))              Bufferedwriter  (write(char[] chuf,0,len))  / flush()
 */
public class FileReaderWriterTest {

    public static void main(String[] args) {
        File file = new File("hello.txt");  //相较于当前工程
        System.out.println(file.getAbsolutePath());

        File file1 = new File("day09\\hello.txt");
        System.out.println(file1.getAbsolutePath());
    }

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

    说明点:
    1.read()的理解:返回读入的一个字符。如果达到文件末尾,返回-1
    2.异常的处理:为了保证流资源一定可以执行关闭操作。需要使用try-catch-finally处理
    3.读入的文件一定要存在,否则就会报FiLeNotFoundException.
     */
    @Test
    public void testFileReader() {
        FileReader fr = null;
        try {
            //1.实例化FiLe类的对象,指明要操作的文件
            File file = new File("hello.txt");  //相较于当前ModuLe

            //2.提供具体的流
            fr = new FileReader(file);

            // 3.数据的读入
            // read():返回读入的一个字符。如果达到文件末尾,返回-1
            //方式一:
//        int data = fr.read();
//        while (data != -1){
//            System.out.print((char) data);
//            data = fr.read();
//        }

            // 方式二:语法上针对于方式一的修改
            int data;
            while ((data = fr.read()) != -1){
                System.out.print((char) data);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            // 4.流的关闭操作
            try {
                if(fr != null)
                    fr.close();
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }

    }

    //read()操作升级:使用read的重载方法
    @Test
    public void testFileReader1() throws IOException {
        FileReader fr = null;
        try {
            //1.FiLe类的实例化
            File file = new File("hello.txt");

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

            //3.读入的操作
            char[] chuf = new char[5];
            int len;
            while ((len = fr.read(chuf)) != -1){
//                // 错误的写法
//                for (int i = 0; i < chuf.length; i++) {
//                    System.out.print(chuf[i]);    // helloworld123ld
//                }

                // 正确的写法
//                  for (int i = 0; i < len; i++) {
//                    System.out.print(chuf[i]);  // helloworld123
//                }

                  //方式二:
                // 错误的写法
//                String str = new String(chuf);
//                System.out.print(str);  // helloworld123ld

                // 正确的写法
                String str = new String(chuf, 0, len);
                System.out.print(str); // helloworld123
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fr != null){
                try {
                    //4.资源的关闭
                    fr.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }
    }

    /*
    从内存中写出数据到硬盘的文件里。

    说明:
    1.输出操作,对应的iLe可以不存在的。并不会报异常
    2.
    File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件。
    FiLe对应的硬盘中的文件如果存在:
        如果流使用的构造器是:FileWriter(fiLe,false)/FileWriter(fiLe):对原有文件的覆盖
                            FileWriter(fiLe,true):不会对原有文件覆盖,而是在原有文件基础上追加内容
     */
    @Test
    public void testFileWriter() {
        FileWriter fw = null;

        try {
            // 1.提供FiLe类的对象,指明写出到的文件
            File file = new File("hello1.txt");

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

            // 3.写出的操作
            fw.write("l love you!\n");
            fw.write("l have a dream!");
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fw != null){
                // 4.流资源的关闭
                try {
                    fw.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }
    }

    @Test
    public void testFileReaderWriter()  {
        FileReader fr = null;
        FileWriter fw = null;

        try {
            //1.创建FiLe类的对象,指明读入和写出的文件
            File srcfile = new File("hello.txt");
            File destfile = new File("hello2.txt");

            // 不能使用字符流来处理图片等字节数据
//            File srcfile = new File("1.png");
//            File destfile = new File("1_1.png");

            //2.创建输入流和输出流的对象
            fr = new FileReader(srcfile);
            fw = new FileWriter(destfile);

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

            try {
                if(fr != null){
                    fr.close();
                }
            } catch (IOException e) {
                throw new RuntimeException(e);
            }

        }
    }
}

三、节点流(或文件流)

1.读取文件

 2.写入文件

 3.注意点

 上代码

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: FileIOStreamTest
 * @create 2023-06-13 21:21
 *
 * 测试 FiLeInputstream 和 FileOutpustream的使用
 *
 * 结论:
 * 1.对于文本文件(。txt,·java,.c,.cpp),使用字符流处理
 * 2.对于非文本文件(。jpg,.mp3,.mp4,.avi,.doc,·ppt,..),使用字节流处理
 *
 */
public class FileIOStreamTest {

    // 使用字节流FiLeInputstream.处理文本文件,可能出现乱码
    @Test
    public void testFileInputStream()  {
        FileInputStream fis = null;

        try {
            // 1.造文件
            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) {
            throw new RuntimeException(e);
        } finally {
            if(fis != null){
                //4.关闭资源
                try {
                    fis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    @Test
    public void testFileIOStream()  {
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
            File srcfile = new File("1.png");
            File destfile = new File("1.1.png");

            fis = new FileInputStream(srcfile);
            fos = new FileOutputStream(destfile);

            //复制的过程
            byte[] buffer = new byte[5];
            int len;
            while ((len = fis.read(buffer)) != -1){
                fos.write(buffer,0,len);
            }
            System.out.println("复制成功!!!");
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fis != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            if(fis != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    // 指定路径下文件的复制
    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);
            }
            System.out.println("复制成功!!!");
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fis != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            if(fis != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    @Test
    public void testCopyFile(){
        long start = System.currentTimeMillis();

        String srcPath = "C:\\Users\\田玉龙\\Videos\\Captures\\险胜.mp4";
        String destPath = "D:\\developer_tools\\java\\IDEA\\ideaproject\\workidea\\day09\\NBA.mp4";

//        String srcPath = "hello.txt";
//        String destPath = "hello3.txt";
        copyFile(srcPath,destPath);

        long end = System.currentTimeMillis();
        System.out.println("复制所用的时间为:" + (end - start)); // 9495

    }

}

四、缓冲流

1.概念

 上代码

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: BufferTest
 * @create 2023-06-14 10:40
 *
 * 处理流之一:缓冲流的使用
 *
 * 1.缓冲流:
 * BufferedInputstream
 * Bufferedoutputstream
 * BufferedReader
 * Bufferedwriter
 *
 * 2.作用:提供流的读取、写入的速度
 *  提高读写速度的原因:内部提供了一个缓冲区
 *
 * 3.处理流,就是 “套接“ 在已有的流的基础上。
 *
 */
public class BufferTest {

    /*
    实现非文本文件的复制
     */
    @Test
    public void BufferedStreamTest(){
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            // 1. 造文件
            File srcFile = new File("2.png");
            File destFile = new File("2.3.png");

            // 2.造流
            // 2.1 造节点流
            FileInputStream fis = new FileInputStream(srcFile);
            FileOutputStream fos = new FileOutputStream(destFile);

            // 2.2造缓冲流
            bis = new BufferedInputStream(fis);
            bos = new BufferedOutputStream(fos);

            //3.复制的细节:读取、写入
            byte[] buffer = new byte[10];
            int len;
            while ((len = bis.read(buffer)) != -1){
                bos.write(buffer,0,len);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            // 4.资源关闭
            // 要求:先关闭外层的流,再关闭内层的流
            if(bos != null){
                try {
                    bos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            if(bos != null){
                try {
                    bis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            // 说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略
//        fos.close();
//        fis.close();
        }

    }

    // 实现文件复制的方法
    public void copyFileWithBuffered(String srcPath,String destPath){
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            // 1. 造文件
            File srcFile = new File(srcPath);
            File destFile = new File(destPath);

            // 2.造流
            // 2.1 造节点流
            FileInputStream fis = new FileInputStream(srcFile);
            FileOutputStream fos = new FileOutputStream(destFile);

            // 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) {
            throw new RuntimeException(e);
        } finally {
            // 4.资源关闭
            // 要求:先关闭外层的流,再关闭内层的流
            if(bos != null){
                try {
                    bos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            if(bos != null){
                try {
                    bis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            // 说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略
//        fos.close();
//        fis.close();
        }

    }

    @Test
    public void testCopyWithBuffered(){
        long start = System.currentTimeMillis();

        String srcPath = "C:\\Users\\田玉龙\\Videos\\Captures\\险胜.mp4";
        String destPath = "D:\\developer_tools\\java\\IDEA\\ideaproject\\workidea\\day09\\NBA.mp4";

        copyFileWithBuffered(srcPath,destPath);

        long end = System.currentTimeMillis();
        System.out.println("复制所用的时间为:" + (end - start)); // 1601
    }


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

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

            //方式二:
            String data;
            while ((data = br.readLine()) != null){
                //方法一:
//                bw.write(data + "\n"); // data中不包含换行符
                // 方法二:
                bw.write(data);
                bw.newLine(); // 提供换行操作

            }

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

        }



    }

}

课后练习

1.文件加密和解密

package com.tyl.exer;

import org.junit.Test;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.exer
 * @Project:workidea
 * @Filename: PicTest
 * @create 2023-06-14 11:47
 */
public class PicTest {

    // 图片的加密
    @Test
    public void test1(){
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
//        FileInputStream fis = new FileInputStream(new File("2.png"));
            fis = new FileInputStream("2.png");
            fos = new FileOutputStream("2_secret.png");

            byte[] buffer = new byte[20];
            int len;
            while ((len = fis.read(buffer)) != -1){
                // 字节数组进行修改
                // 错误的
    //            for(byte b : buffer){
    //                b = (byte) (b ^ 5);
    //            }

                // 正确的
                for (int i = 0; i < len; i++) {
                  buffer[i] = (byte) (buffer[i] ^ 5);

                }
                fos.write(buffer,0,len);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fis != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            if(fos != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    // 图片的解密
    @Test
    public void test2(){
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
//        FileInputStream fis = new FileInputStream(new File("2.png"));
            fis = new FileInputStream("2_secret.png");
            fos = new FileOutputStream("2_outsecret.png");

            byte[] buffer = new byte[20];
            int len;
            while ((len = fis.read(buffer)) != -1){
                // 字节数组进行修改
                // 错误的
                //            for(byte b : buffer){
                //                b = (byte) (b ^ 5);
                //            }

                // 正确的
                for (int i = 0; i < len; i++) {
                    buffer[i] = (byte) (buffer[i] ^ 5);

                }
                fos.write(buffer,0,len);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(fis != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            if(fos != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

}

2.获取文本上每个字符出现的次数

package com.tyl.exer;

import org.junit.Test;

import java.io.*;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;


/**
 * 练习3:获取文本上字符出现的次数,把数据写入文件
 *
 * 思路:
 * 1.遍历文本每一个字符
 * 2.字符出现的次数存在Map中
 *
 * Map<Character,Integer> map = new HashMap<Character,Integer>();
 * map.put('a',18);
 * map.put('你',2);
 *
 * 3.把map中的数据写入文件
 *
 * @author shkstart
 * @create 2019 下午 3:47
 */
public class WordCount {
    /*
    说明:如果使用单元测试,文件相对路径为当前module
          如果使用main()测试,文件相对路径为当前工程
     */
    @Test
    public void testWordCount() {
        FileReader fr = null;
        BufferedWriter bw = null;
        try {
            //1.创建Map集合
            Map<Character, Integer> map = new HashMap<Character, Integer>();

            //2.遍历每一个字符,每一个字符出现的次数放到map中
            fr = new FileReader("dbcp.txt");
            int c = 0;
            while ((c = fr.read()) != -1) {
                //int 还原 char
                char ch = (char) c;
                // 判断char是否在map中第一次出现
                if (map.get(ch) == null) {
                    map.put(ch, 1);
                } else {
                    map.put(ch, map.get(ch) + 1);
                }
            }

            //3.把map中数据存在文件count.txt
            //3.1 创建Writer
            bw = new BufferedWriter(new FileWriter("wordcount.txt"));

            //3.2 遍历map,再写入数据
            Set<Map.Entry<Character, Integer>> entrySet = map.entrySet();
            for (Map.Entry<Character, Integer> entry : entrySet) {
                switch (entry.getKey()) {
                    case ' ':
                        bw.write("空格=" + entry.getValue());
                        break;
                    case '\t'://\t表示tab 键字符
                        bw.write("tab键=" + entry.getValue());
                        break;
                    case '\r'://
                        bw.write("回车=" + entry.getValue());
                        break;
                    case '\n'://
                        bw.write("换行=" + entry.getValue());
                        break;
                    default:
                        bw.write(entry.getKey() + "=" + entry.getValue());
                        break;
                }
                bw.newLine();
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //4.关流
            if (fr != null) {
                try {
                    fr.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }

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

            }
        }

    }
}

五、转换流

1.概念

 2.补充:字符编码

上代码

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: IOStreamReaderTest
 * @create 2023-06-14 16:22
 *
 * 处理流之二:转换流的使用
 * 1.转换流:属于字符流
 * InputstreamReader:将一个字节的输入流转换为字符的输入流
 * OutputstreamWriter:.将一个字符的输出流转换为字节的输出流
 *
 * 2.作用:提供字节流与字符流之间的转换
 *
 * 3.解码:字节、字节数组--->字符数组、字符串
 *   编码:字符数组、字符串--~>字节、字节数组\
 *
 * 4.字符集
 *    常见的编码表
 *  ASCII:美国标准信息交换码。
         *  用一个字节的7位可以表示。
 *  ISO8859-1:拉丁码表。欧洲码表
         *  用一个字节的8位表示。
 *  GB2312:中国的中文编码表。最多两个字节编码所有字符
 *  GBK:中国的中文编码表升级,融合了更多的中文文字符号。最多两个字节编码
 *  Unicode:国际标准码,融合了目前人类使用的所有字符。为每个字符分配唯一的字符码。所有的文字都用两个字节来表示。
 *  UTF-8:变长的编码方式,可用1-4个字节来表示一个字符。
 *
 */
public class IOStreamReaderTest {
    /*
    此时处理异常的话,仍然应该使用try-catch-finally
    InputStreamReader的使用,实现字节的输入流到字符的输入流的转换
     */
    @Test
    public void test1() throws IOException {
        FileInputStream fis = new FileInputStream("dbcp.txt");
        InputStreamReader isr = new InputStreamReader(fis);    // 使用系统默认的字符集
        // 参数2指明了字符集,具体使用哪个字符集,取决于文件bcp.txt保存时使用的字符集
//        InputStreamReader isr = new InputStreamReader(fis,"UTF-8");
//        InputStreamReader isr = new InputStreamReader(fis,"gbk");

        char[] chuf = new char[1024];
        int len;
        while ((len = isr.read(chuf)) != -1){
            String str = new String(chuf, 0, len);
            System.out.println(str);
        }

        isr.close();

    }

    /*
    综合使用InputStreamReader 和 OutputstreamWriter
     */
    @Test
    public void test2() throws IOException {
        File file1 = new File("dbcp.txt");
        File file2 = new File("dbcp_gbk.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[] chuf = new char[20];
        int len;
        while ((len = isr.read(chuf)) != -1){
            osw.write(chuf,0,len);
        }

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

    }
}

六、标准输入、输出流 (了解)

1.概念

七、打印流 (了解)

1.概念

八、数据流 (了解)

1.概念

 标准输入、输出流 打印流和数据流(代码演示)

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: OtherStreamTest
 * @create 2023-06-14 18:17
 */
public class OtherStreamTest {
    /*
     * 1.标准的输入、输出流
     * 1.1
     * System.in: 标准的输入流,默认从罐盘输入
     * System.out: 标准的输出流,默认从控制台输出
     * 1.2
     * System类的 setIn(Inputstream is)/ setOut(Printstream ps)方式重新指定输入和输出的流。
     *
     * 1.3 练习
     * 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续
     * 进行输入操作,直至当输入“e”或者“exit”时,退出程序。
     *
     *  方法一:使用Scanner实现,调用 next()返回一个字符串
        方法二:使用System.in实现 System.in--->转换流-->BufferedReader的readLine()
     */
    public static void main(String[] args) {

        BufferedReader br = null;
        try {
            InputStreamReader isr = new InputStreamReader(System.in);
            br = new BufferedReader(isr);

            while (true){
                System.out.println("请输入字符串:");
                String data = br.readLine();
                if("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)){
                    System.out.println("程序结束");
                    break;
                }

                String upperCase = data.toUpperCase();
                System.out.println(upperCase);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(br != null){
                try {
                    br.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    /*
    2.打印流:PrintStream和PrintWriter
        2.1 提供了一系列重载的print()和println()
        2.2 练习:
     */
    @Test
    public void test2(){
        PrintStream ps = null;
        try {
            FileOutputStream fos = new FileOutputStream(new File("D:\\developer_tools\\java\\IDEA\\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();
            }
        }

    }

    /*
    3.数据流
        3.1 DataInputstream DataOutputstream
        3.2  作用:用于读取或写出基本数据类型的变量或字符串

        练习:将内存中的字符串、基本数据类型的变量写出到文件中。
        注意:处理异常的话,仍然应该使用try-catch-finally.

     */
    @Test
    public void test3() throws IOException {

        DataOutputStream dos = new DataOutputStream(new FileOutputStream("data.txt"));

        dos.writeUTF("田玉龙");
        dos.flush(); // 刷新操作,将内存中的数据写入文件
        dos.writeInt(22);
        dos.flush();
        dos.writeBoolean(true);
        dos.flush();

        dos.close();

    }

    /*
    将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。

    注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!
     */
    @Test
    public void test4() throws IOException {
        DataInputStream dis = new DataInputStream(new FileInputStream("data.txt"));

        String name = dis.readUTF();
        int age = dis.readInt();
        boolean isMale = dis.readBoolean();

        System.out.println("name = :" + name);
        System.out.println("age = :" + age);
        System.out.println("Male = :" + isMale);

        dis.close();

    }



}

练习

 代码

package com.tyl.exer;
// MyInput.java: Contain the methods for reading int, double, float, boolean, short, byte and
// string values from the keyboard

import java.io.*;

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());
    }
}

九、对象流

1.处理流之六:对象流

 2.对象的序列化

 3.使用对象流序列化对象

 上代码

package com.tyl.java;

import org.junit.Test;

import java.io.*;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: ObjectIOStreamTest
 * @create 2023-06-15 16:57
 *
 * 对象流的使用
 * 1.ObjectInputstream 和 objectoutputstream
 * 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,
 *         也能把对象从数据源中还原回来。
 * 3.要想一个5ava对象是可序列化的,需要满足相应的要求。见Person.java
 * 4.序列化机制:
 * 对象序列化机制允许把内存中的)jαVa对象转换成平台无关的二进制流,从而允许把这种
 * 二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。
 * 当其它程序获取了这种二进制流,就可以恢复成原来的jαxα对象
 */
public class ObjectIOStreamTest {
    /*
    序列化过程:将内存中的jαvα对象保存到磁盘中或通过网络传输出去
     使用ObjectOutputStream实现
     */
    @Test
    public void testObjectOutputStream(){
        ObjectOutputStream oos = null;
        try {
            oos = new ObjectOutputStream(new FileOutputStream("object.txt"));

            oos.writeObject(new String("我爱你中国!!!"));
            oos.flush();  //刷新操作

            oos.writeObject(new Person("tyl",22));
            oos.flush();

            oos.writeObject(new Person("tyl",22,1001,new Account(5000)));
            oos.flush();
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(oos != null){
                try {
                    oos.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    /*
    反序列化:将磁盘文件中的对象还原为内存中的一个java对象
    使用ObjectInputstream.来实现
     */
    @Test
    public void testObjectIutputStream(){
        ObjectInputStream ois = null;
        try {
            ois = new ObjectInputStream(new FileInputStream("object.txt"));

            Object obj = ois.readObject();
            String str = (String) obj;

            Person p = (Person) ois.readObject();
            Person p1 = (Person) ois.readObject();

            System.out.println(str);
            System.out.println(p);
            System.out.println(p1);
        } catch (IOException e) {
            throw new RuntimeException(e);
        } catch (ClassNotFoundException e) {
            throw new RuntimeException(e);
        } finally {
            if(ois != null){
                try {
                    ois.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    
}
package com.tyl.java;

import java.io.Serializable;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: Person
 * @create 2023-06-15 21:53
 *
 * Person需要满足如下的要求,方可序列化
 * 1.需要实现接口:Serializable
 * 2.当前类提供一个全局常量:serialVersionUID
 * 3.除了当前Person类需要实现Serializable.接口之外,还必须保证其内部所有属性
 *    也必须是可序列化的。(默认情况下,基本数据类型可序列化)
 */
public class Person implements Serializable {

    static final long serialVersionUID = 42L;

//    private static String name;
//    private transient int age;
    private String name;
    private int age;
    private int id;
    private Account acct;

    public Account getAcct() {
        return acct;
    }

    public void setAcct(Account acct) {
        this.acct = acct;
    }

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

    public int getId() {
        return id;
    }

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

    public void setId(int id) {
        this.id = id;
    }

    public Person() {
    }

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

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

}

class Account implements Serializable{

    static final long serialVersionUID = 42L;
    private double balance;

    public Account(double balance) {
        this.balance = balance;
    }

    public double getBalance() {
        return balance;
    }

    public void setBalance(double balance) {
        this.balance = balance;
    }

    @Override
    public String toString() {
        return "Account{" +
                "balance=" + balance +
                '}';
    }
}

十、随机存取文件流

1.RandomAccessFile 类

 2.读取文件内容

 3.写入文件内容

 4.流的基本应用小节

 上代码

package com.tyl.java;

import org.junit.Test;

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: RandomAccessFileTest
 * @create 2023-06-16 15:13
 *
 *  RandomAccessFiLe的使用
 * 1.RandomAccessFiLe.直接继承于ava.Lang.Object类,实现了DataInput DataOutput.接口
 * 2.RandomAccessFiLe.既可以作为一个输入流,又可以作为一个输出流
 *
 * 3.如果RandomAccessFiLe作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建
 *   如果写出到的文件存在,则会对原有件内容进行覆盖。(默认情况下,从头覆盖)
 *
 * 4.可以通过相关的操作,实现RandomAccessFiLe"插入"数据的效果
 */
public class RandomAccessFileTest {

    @Test
    public void test1() {
        RandomAccessFile raf1 = null;
        RandomAccessFile raf2 = null;
        try {
            raf1 = new RandomAccessFile(new File("1.png"),"r");
            raf2 = new RandomAccessFile(new File("1_1.png"), "rw");

            byte[] buffer = new byte[1024];
            int len;
            while ((len = raf1.read(buffer)) != -1){
                raf2.write(buffer,0,len);
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if(raf1 != null){
                try {
                    raf1.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            if(raf2 != null){
                try {
                    raf2.close();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        }

    }

    @Test
    public void test2() throws IOException {
        RandomAccessFile raf1 = new RandomAccessFile("hello.txt", "rw");

        raf1.seek(3); // 将指针调到角标为3的位置
        raf1.write("xyz".getBytes());

        raf1.close();

    }

    /*
    使用RandomAccessFiLe实现数据的插入效果
     */
    @Test
    public void test3() throws IOException {
        RandomAccessFile raf1 = new RandomAccessFile("hello.txt", "rw");

        raf1.seek(3); // 将指针调到角标为3的位置
        // 保存指针3后面的所有数据到StringBuilder中
        StringBuilder builder = new StringBuilder((int) new File("hello.txt").length());

        byte[] buffer = new byte[20];
        int len;
        while ((len = raf1.read(buffer)) != -1){
            builder.append(new String(buffer,0,len));
        }
        // 调回指针,写入“xyz”
        raf1.seek(3);
        raf1.write("hhhsasasgggg".getBytes());

        // 将StringBuilder中的数据写入到文件中
        raf1.write(builder.toString().getBytes());

        raf1.close();

    }

    // 思考:将tringBuilder替换为ByteArrayoutputstream

}

十一、NIO.2 中Path、Paths、Files类的使用

1.Java NIO 概述

 2.NIO. 2

 3.Path、Paths和Files核心API

 4.Path接口

上代码

package com.tyl.java;

import org.junit.Test;

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;

/**
 * 1. jdk 7.0 时,引入了 Path、Paths、Files三个类。
 * 2.此三个类声明在:java.nio.file包下。
 * 3.Path可以看做是java.io.File类的升级版本。也可以表示文件或文件目录,与平台无关
 * <p>
 * 4.如何实例化Path:使用Paths.
 * static Path get(String first, String … more) : 用于将多个字符串串连成路径
 * static Path get(URI uri): 返回指定uri对应的Path路径
 *
 * @author shkstart
 * @create 2019 下午 2:44
 */
public class PathTest {

    //如何使用Paths实例化Path
    @Test
    public void test1() {
        Path path1 = Paths.get("d:\\nio\\hello.txt");//new File(String filepath)

        Path path2 = Paths.get("d:\\", "nio\\hello.txt");//new File(String parent,String filename);

        System.out.println(path1);
        System.out.println(path2);

        Path path3 = Paths.get("d:\\", "nio");
        System.out.println(path3);
    }

    //Path中的常用方法
    @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的转换

    }


}

 5.Files 类

 上代码

package com.tyl.java;

import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.channels.SeekableByteChannel;
import java.nio.file.*;
import java.util.Iterator;

/**
 * Files工具类的使用:操作文件或目录的工具类
 * @author shkstart
 * @create 2019 下午 2:44
 */
public class FilesTest {

	@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);

	}

	@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));
	}

	/**
	 * StandardOpenOption.READ:表示对应的Channel是可读的。
	 * StandardOpenOption.WRITE:表示对应的Channel是可写的。
	 * StandardOpenOption.CREATE:如果要写出的文件不存在,则创建。如果存在,忽略
	 * StandardOpenOption.CREATE_NEW:如果要写出的文件不存在,则创建。如果存在,抛异常
	 *
	 * @author shkstart 邮箱:shkstart@126.com
	 * @throws IOException
	 */
	@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<Path>  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());
		}


	}
}

6.使用第三方jar包读取写入数据

先把jar包导入你的model,然后直接使用

上代码

package com.tyl.java;

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;

/**
 * @author tyl 邮箱:tyl202061@gmail.com
 * @Package:com.tyl.java
 * @Project:workidea
 * @Filename: FileUtilsTest
 * @create 2023-06-16 19:51
 */
public class FileUtilsTest {
    public static void main(String[] args) {
        File srcFile = new File("day10\\1.png");
        File destFile = new File("day10\\1_2.png");
        try {
            FileUtils.copyFile(srcFile,destFile);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}

东西越学越多,忘得也是越来越快,继续努力吧! !!还能咋地

好的,我可以为你介绍一下如何使用 Java 编写程序实现文件拷贝。 Java 提供了非常方便的 I/O 类来处理文件读写操作。文件拷贝的基本思路是读取源文件中的数据,然后将数据写入到目标文件中。下面是一个简单的文件拷贝程序示例: ```java import java.io.*; public class FileCopy { public static void main(String[] args) throws IOException { // 源文件路径 String srcFilePath = "C:/temp/source.txt"; // 目标文件路径 String destFilePath = "C:/temp/dest.txt"; // 创建输入流和输出流 FileInputStream fis = new FileInputStream(srcFilePath); FileOutputStream fos = new FileOutputStream(destFilePath); // 定义缓冲区,每次读取 1024 个字节 byte[] buffer = new byte[1024]; int len; // 循环读取源文件中的数据,并将数据写入到目标文件中 while ((len = fis.read(buffer)) != -1) { fos.write(buffer, 0, len); } // 关闭输入流和输出流 fis.close(); fos.close(); System.out.println("文件拷贝完成!"); } } ``` 在上面的示例中,我们首先定义了源文件路径和目标文件路径。然后创建了输入流和输出流,用于读取源文件和向目标文件写入数据。我们定义了一个缓冲区,每次从输入流中读取 1024 个字节,并将这些字节写入到输出流中。最后,我们关闭输入流和输出流,并输出一条完成信息。 需要注意的是,上面的代码中使用了 try-catch 语句来捕获可能出现的 IOException 异常。这是因为在文件读写过程中可能会出现异常,比如文件不存在、文件无法读取等等。为了保证程序的健壮性,我们需要使用 try-catch 语句来处理这些异常。 希望这个简单的示例可以帮助你了解如何使用 Java 编写文件拷贝程序。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值