4种java复制文件的方式
尽管java提供了一个可以处理文件的io操作类,但是没有一个复制文件的方法。复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候。然而有几种方法可以进行java文件复制操作,下面列举出4中最受欢迎的方式。
1. 使用filestreams复制
这是最经典的方式将一个文件的内容复制到另一个文件中。 使用fileinputstream读取文件a的字节,使用fileoutputstream写入到文件b。 这是第一个方法的代码:
private static void copyfileusingfilestreams(file source, file dest) throws ioexception { inputstream input = null; outputstream output = null; try { input = new fileinputstream(source); output = new fileoutputstream(dest); byte[] buf = new byte[1024]; int bytesread; while ((bytesread = input.read(buf)) > 0) { output.write(buf, 0, bytesread); } } finally { input.close(); output.close(); } }
正如你所看到的我们执行几个读和写操作try的数据,所以这应该是一个低效率的,下一个方法我们将看到新的方式。
2. 使用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(); } }
3. 使用commons io复制
apache commons io提供拷贝文件方法在其fileutils类,可用于复制一个文件到另一个地方。它非常方便使用apache commons fileutils类时,您已经使用您的项目。基本上,这个类使用java nio filechannel内部。 这是第三种方法的代码:
private static void copyfileusingapachecommonsio(file source, file dest) throws ioexception { fileutils.copyfile(source, dest); }
4. 使用java7的files类复制
如果你有一些经验在java 7中你可能会知道,可以使用复制方法的files类文件,从一个文件复制到另一个文件。 这是第四个方法的代码:
private static void copyfileusingjava7files(file source, file dest) throws ioexception { files.copy(source.topath(), dest.topath()); }
5. 测试
现在看到这些方法中的哪一个是更高效的,我们会复制一个大文件使用每一个在一个简单的程序。 从缓存来避免任何性能明显我们将使用四个不同的源文件和四种不同的目标文件。 让我们看一下代码:
import java.io.file; import java.io.fileinputstream; import java.io.fileoutputstream; import java.io.ioexception; import java.io.inputstream; import java.io.outputstream; import java.nio.channels.filechannel; import java.nio.file.files; import org.apache.commons.io.fileutils; public class copyfilesexample { public static void main(string[] args) throws interruptedexception, ioexception { file source = new file("c:\\users\\nikos7\\desktop\\files\\sourcefile1.txt"); file dest = new file("c:\\users\\nikos7\\desktop\\files\\destfile1.txt"); // copy file using filestreams long start = system.nanotime(); long end; copyfileusingfilestreams(source, dest); system.out.println("time taken by filestreams copy = " + (system.nanotime() - start)); // copy files using java.nio.filechannel source = new file("c:\\users\\nikos7\\desktop\\files\\sourcefile2.txt"); dest = new file("c:\\users\\nikos7\\desktop\\files\\destfile2.txt"); start = system.nanotime(); copyfileusingfilechannels(source, dest); end = system.nanotime(); system.out.println("time taken by filechannels copy = " + (end - start)); // copy file using java 7 files class source = new file("c:\\users\\nikos7\\desktop\\files\\sourcefile3.txt"); dest = new file("c:\\users\\nikos7\\desktop\\files\\destfile3.txt"); start = system.nanotime(); copyfileusingjava7files(source, dest); end = system.nanotime(); system.out.println("time taken by java7 files copy = " + (end - start)); // copy files using apache commons io source = new file("c:\\users\\nikos7\\desktop\\files\\sourcefile4.txt"); dest = new file("c:\\users\\nikos7\\desktop\\files\\destfile4.txt"); start = system.nanotime(); copyfileusingapachecommonsio(source, dest); end = system.nanotime(); system.out.println("time taken by apache commons io copy = " + (end - start)); } private static void copyfileusingfilestreams(file source, file dest) throws ioexception { inputstream input = null; outputstream output = null; try { input = new fileinputstream(source); output = new fileoutputstream(dest); byte[] buf = new byte[1024]; int bytesread; while ((bytesread = input.read(buf)) > 0) { output.write(buf, 0, bytesread); } } finally { input.close(); output.close(); } } 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(); } } private static void copyfileusingjava7files(file source, file dest) throws ioexception { files.copy(source.topath(), dest.topath()); } private static void copyfileusingapachecommonsio(file source, file dest) throws ioexception { fileutils.copyfile(source, dest); } }
输出:
time taken by filestreams copy = 127572360 time taken by filechannels copy = 10449963 time taken by java7 files copy = 10808333 time taken by apache commons io copy = 17971677
正如您可以看到的filechannels拷贝大文件是最好的方法。如果你处理更大的文件,你会注意到一个更大的速度差。这是一个示例,该示例演示了java中四种不同的方法可以复制一个文件。
以上就是本文的全部内容,希望对大家的学习有所帮助。
上一篇: 详解Android中的Toast源码