java中文件复制的4种方式
发布时间:2020-12-15 07:35:39  所属栏目:Java  来源:网络整理 
            导读:? ? ? 今天一个同事问我文件复制的问题,他一个100M的文件复制的指定目录下竟然成了1G多,吓我一跳,后来看了他的代码发现是自己通过字节流复制的,定义的字节数组很大,导致复制后目标文件非常大,其实就是空行等一些无效空间。我也是很少用这种方式拷贝问
                
                
                
            | ? ? ? 今天一个同事问我文件复制的问题,他一个100M的文件复制的指定目录下竟然成了1G多,吓我一跳,后来看了他的代码发现是自己通过字节流复制的,定义的字节数组很大,导致复制后目标文件非常大,其实就是空行等一些无效空间。我也是很少用这种方式拷贝问价,大多数用Apache提供的commons-io中的FileUtils,后来在网上查了下,发现还有其他的方式,效率更高,所以在此整理一下,也是自己的一个学习。 1. 使用FileStreams复制 比较经典的一个代码,使用FileInputStream读取文件A的字节,使用FileOutputStream写入到文件B。 public static void copy(String source,String dest,int bufferSize) { InputStream in = null; OutputStream out = null; try { in = new FileInputStream(new File(source)); out = new FileOutputStream(new File(dest)); byte[] buffer = new byte[bufferSize]; int len; while ((len = in.read(buffer)) > 0) { out.write(buffer,0,len); } } catch (Exception e) { Log.w(TAG + ":copy","error occur while copy",e); } finally { safelyClose(TAG + ":copy",in); safelyClose(TAG + ":copy",out); } }  2、使用FileChannelJava NIO包括transferFrom方法,根据文档应该比文件流复制的速度更快。 ? public static void copyNio(String source,String dest) { FileChannel input = null; FileChannel output = null; try { input = new FileInputStream(new File(from)).getChannel(); output = new FileOutputStream(new File(to)).getChannel(); output.transferFrom(input,0,input.size()); } catch (Exception e) { Log.w(TAG + "copyNio","error occur while copy",e); } finally { safelyClose(TAG + "copyNio",input); safelyClose(TAG + "copyNio",output); } }private static void copyFileByApacheCommonsIO(File source,File dest) throws IOException { FileUtils.copyFile(source,dest); }4、使用Java7的Files类复制private static void copyFileUsingJava7Files(File source,File dest) throws IOException { Files.copy(source.toPath(),dest.toPath()); }我没有亲测,找了下网友的测试程序和输出,性能数据供大家参考(来源:https://www.aspzz.cn/article/70412.htm)importjava.io.File;importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;importjava.nio.channels.FileChannel;importjava.nio.file.Files;importorg.apache.commons.io.FileUtils;publicclassCopyFilesExample {??publicstaticvoidmain(String[] args) throwsInterruptedException,??????IOException {????File source = newFile("C:Usersnikos7Desktopfilessourcefile1.txt");????File dest = newFile("C:Usersnikos7Desktopfilesdestfile1.txt");??????// copy file using FileStreams????longstart = System.nanoTime();????longend;????copyFileUsingFileStreams(source,dest);????System.out.println("Time taken by FileStreams Copy = "????????+ (System.nanoTime() - start));
  ? 
 ????// copy files using java.nio.FileChannel????source = newFile("C:Usersnikos7Desktopfilessourcefile2.txt");????dest = newFile("C:Usersnikos7Desktopfilesdestfile2.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 = newFile("C:Usersnikos7Desktopfilessourcefile3.txt");????dest = newFile("C:Usersnikos7Desktopfilesdestfile3.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 = newFile("C:Usersnikos7Desktopfilessourcefile4.txt");????dest = newFile("C:Usersnikos7Desktopfilesdestfile4.txt");????start = System.nanoTime();????copyFileUsingApacheCommonsIO(source,dest);????end = System.nanoTime();????System.out.println("Time taken by Apache Commons IO Copy = "????????+ (end - start));??}??privatestaticvoidcopyFileUsingFileStreams(File source,File dest)??????throwsIOException {????InputStream input = null;????OutputStream output = null;????try{??????input = newFileInputStream(source);??????output = newFileOutputStream(dest);??????byte[] buf = newbyte[1024];??????intbytesRead;??????while((bytesRead = input.read(buf)) > 0) {????????output.write(buf,0,bytesRead);??????}????} finally{??????input.close();??????output.close();????}??}??privatestaticvoidcopyFileUsingFileChannels(File source,File dest)??????throwsIOException {????FileChannel inputChannel = null;????FileChannel outputChannel = null;????try{??????inputChannel = newFileInputStream(source).getChannel();??????outputChannel = newFileOutputStream(dest).getChannel();??????outputChannel.transferFrom(inputChannel,inputChannel.size());????} finally{??????inputChannel.close();??????outputChannel.close();????}??}??privatestaticvoidcopyFileUsingJava7Files(File source,File dest)??????throwsIOException {????Files.copy(source.toPath(),dest.toPath());??}??privatestaticvoidcopyFileUsingApacheCommonsIO(File source,File dest)??????throwsIOException {????FileUtils.copyFile(source,dest);??}}输出: Time taken by FileStreams Copy = 127572360Time taken by FileChannels Copy = 10449963Time taken by Java7 Files Copy = 10808333Time taken by Apache Commons IO Copy = 17971677(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! | 
