• Java基础进阶IO流-文件复制


    使用字节流文件复制

    public class CopyTest01 {
        public static void main(String[] args) {
    
            FileInputStream fis = null;
            FileOutputStream fos = null;
    
            try {
                fis = new FileInputStream("C:\\Users\\王一林\\Desktop\\论文pdf\\2122_41_13500_080902_3118070108_BS_001.pdf");
                fos = new FileOutputStream("D:\\2122_41_13500_080902_3118070108_BS_001.pdf");
    
                //先读,每次读1M数据(1024 * 1024)// 最核心的:一边读,一边写
                byte[] bytes = new byte[1024 * 1024];
                int readCount = 0;
                while((readCount = fis.read(bytes)) != -1){
                    //读多少,就写多少API
                    fos.write(bytes,0,readCount);
                }
    
                //最后输出流一定要刷新
                fos.flush();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                //这里要分开try,因为如果一起try的话,如果其中一个流出现异常会影响到另一个流的关闭。
                if(fis != null){
                    try {
                        fis.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(fos != null){
                    try {
                        fos.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43

    复制结果

    在这里插入图片描述

    使用FileReader FileWriter字符流进行拷贝的话,只能拷贝“普通文本”文件。(.java文件也是普通文本文件)

    public class Copy02Test01 {
        public static void main(String[] args) {
            FileReader in = null;
            FileWriter out = null;
            try {
                in = new FileReader("IO\\src\\com\\newstudy\\javase\\io\\Copy02Test01.java");
                out = new FileWriter("Copy02Test01.java");
                //读,每次读1MB
                char[] chars = new char[1024 * 512];//1MB
                int readCount = 0;
                //一边读,一边写
                while((readCount = in.read(chars)) != -1){
                    //写
                    out.write(chars,0,readCount);
                }
                //刷新
                out.flush();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if(in != null){
                    try {
                        in.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(out != null){
                    try {
                        out.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40

    复制结果:在这里插入图片描述

  • 相关阅读:
    Makefile学习
    linux安装mysql 5.7 完整步骤
    项目部署到Linux
    Vue2学习_lesson1
    linux 模型属性attribute
    使用PicGo+GitHub解决CSDN上传Typora的.md文件无法显示照片问题
    02excel基础及函数
    如何选择一款好用的物业管理软件?快鲸物业管理软件是不二之选
    TB1荧光染料
    643. 子数组最大平均数I(滑动窗口)
  • 原文地址:https://blog.csdn.net/qq_46096136/article/details/126799025