当前位置: 首页 > article >正文

Java文件复制多种方法

1、InputStream与OutputStream 

创建两个文件 - 源和目标。然后我们从源创建InputStream并使用OutputStream将其写入目标文件进行 java 复制文件操作。

private static void copyFileUsingStream(File source, File dest) throws IOException {
    InputStream is = null;
    OutputStream os = null;
    try {
        is = new FileInputStream(source);
        os = new FileOutputStream(dest);
        byte[] buffer = new byte[1024];
        int length;
        while ((length = is.read(buffer)) > 0) {
            os.write(buffer, 0, length);
        }
    } finally {
        is.close();
        os.close();
    }
}

2、Apache Commons IO FileUtils

copyFile(File srcFile, File destFile)可用于在 java 中复制文件。如果您已经在项目中使用 Apache Commons IO,那么使用它来简化代码是有意义的。它在内部使用 Java NIO FileChannel,因此如果您尚未将其用于其他功能,则可以避免使用此包装器方法。下面是使用apache commons io进行java复制文件操作的方法

private static void copyFileUsingApacheCommonsIO(File source, File dest) throws IOException {
    FileUtils.copyFile(source, dest);
}

3、Files类的copy()方法在 java 中复制文件

private static void copyFileUsingJava7Files(File source, File dest) throws IOException {
    Files.copy(source.toPath(), dest.toPath());
}

4、使用BufferedInputStream/BufferedOutputStream高效字节流进行复制文件

private static void bufferedStreamCopyFile(File srcFile, File desFile) throwsIOException {
         //使用缓冲字节流进行文件复制
         BufferedInputStream bis = new BufferedInputStream(newFileInputStream(srcFile));
         BufferedOutputStream bos = new BufferedOutputStream(newFileOutputStream(desFile));
         byte[] b = new byte[1024];
         Integer len = 0;
         //一次读取1024字节的数据
         while((len = bis.read(b)) != -1) {
             bos.write(b, 0, len);
 }
 bis.close();
 bos.close();
}

5、使用FileReader/FileWriter字符流进行文件复制

注意这种方式只能复制只包含字符的文件,也就意味着你用记事本打开该文件你能够读懂

private static void readerWriterCopyFile(File srcFile, File desFile) throwsIOException  {
         //使用字符流进行文件复制,注意:字符流只能复制只含有汉字的文件
         FileReader fr = newFileReader(srcFile);
         FileWriter fw = newFileWriter(desFile);
         
         Integer by = 0;
         while((by = fr.read()) != -1) {
 fw.write(by);
 }
         
 fr.close();
 fw.close();
     }

6、使用BufferedReader/BufferedWriter高效字符流进行文件复制

意这种方式只能复制只包含字符的文件,也就意味着你用记事本打开该文件你能够读懂

private static void bufferedReaderWriterCopyFile(File srcFile, File desFile)  throwsIOException {
         //使用带缓冲区的高效字符流进行文件复制
         BufferedReader br = new BufferedReader(newFileReader(srcFile));
         BufferedWriter bw = new BufferedWriter(newFileWriter(desFile));
         
         char[] c = new char[1024];
         Integer len = 0;
         while((len = br.read(c)) != -1) {
             bw.write(c, 0, len);
 }
         
         //方式二
         /*String s = null;
 while((s = br.readLine()) != null) {
 bw.write(s);
 bw.newLine();
 }*/
         
 br.close();
 bw.close();
     }

7、使用BufferedReader/BufferedWriter高效字符流进行文件复制

注意这种方式只能复制只包含字符的文件,也就意味着你用记事本打开该文件你能够读懂

private static void bufferedReaderWriterCopyFile(File srcFile, File desFile)  throwsIOException {
         //使用带缓冲区的高效字符流进行文件复制
        BufferedReader br = new BufferedReader(newFileReader(srcFile));
        BufferedWriter bw = new BufferedWriter(newFileWriter(desFile));
        
         char[] c = new char[1024];
         Integer len = 0;
         while((len = br.read(c)) != -1) {
             bw.write(c, 0, len);
 }
         
         //方式二
         /*String s = null;
 while((s = br.readLine()) != null) {
 bw.write(s);
 bw.newLine();
 }*/
         
 br.close();
 bw.close();
}

8、使用FileChannel复制

Java NIO包括transferFrom方法,根据文档应该比文件流复制的速度更快

private static void copyFileUsingFileChannels(File source, File dest) throws IOException {   
    FileChannel inputChannel = null;   
    FileChannel outputChannel = null;   
  try { 
    inputChannel = new FileInputStream(source).getChannel(); 
    outputChannel = new FileOutputStream(dest).getChannel(); 
    outputChannel.transferFrom(inputChannel, 0, inputChannel.size()); 
  } finally { 
    inputChannel.close(); 
    outputChannel.close(); 
  } 
} 


http://www.kler.cn/a/3959.html

相关文章:

  • Linux 系统性能调优
  • Web自动化:Cypress 测试框架概述
  • 【12】Word:张老师学术论文❗
  • pytest-instafail:让测试失败信息即时反馈
  • PyTorch使用教程(2)-torch包
  • 静态综合路由实验
  • Java中Static关键字的五种用法详解
  • RK3568平台开发系列讲解(驱动基础篇)IO 模型的分类
  • 网络技术这十个术语你知道吗?
  • HTML 标签和属性
  • 基于Java+Springboot+vue的幼儿园管理系统设计与实现【源码(完整源码请私聊)+论文+演示视频+包运行成功】
  • ADC选型关注的参数
  • HTTPS的加密流程
  • 个推携手中国信通院举办“APP开发者个人信息保护培训宣讲会”
  • 首个ChatGPT开发的应用上线;ChatMind思维导图工具;中文提示词大全;Copilot平替 | ShowMeAI日报
  • 免费1年服务器,部署个ChatGPT专属网页版
  • 免费ChatGPT自动批量生成文章工具
  • Java泛型
  • K8S + GitLab + Jenkins自动化发布项目实践(二)
  • 武汉凯迪正大GB4208外壳防护等级试具
  • 数据结构与算法基础-学习-18-哈夫曼编码
  • Linux:软件包管理
  • 第十四届中国大学生创新创业大赛
  • Vue组件原理知识(1)
  • 【数据结构】堆(堆的实现 堆向下调整算法 堆的创建 堆的插入 堆的删除 堆的代码实现 堆的应用)
  • 基于深度学习的海洋动物检测系统(Python+YOLOv5+清新界面)