Java复制文件的几种方法

不考虑多线程优化,单线程文件复制最快的方法是(文件越大该方法越有优势,一般比常用方法快30+%):

 

Java代码 复制代码
  1. private static void nioTransferCopy(File source, File target) {   
  2.     FileChannel in = null;   
  3.     FileChannel out = null;   
  4.     FileInputStream inStream = null;   
  5.     FileOutputStream outStream = null;   
  6.     try {   
  7.         inStream = new FileInputStream(source);   
  8.         outStream = new FileOutputStream(target);   
  9.         in = inStream.getChannel();   
  10.         out = outStream.getChannel();   
  11.         in.transferTo(0, in.size(), out);   
  12.     } catch (IOException e) {   
  13.         e.printStackTrace();   
  14.     } finally {   
  15.         close(inStream);   
  16.         close(in);   
  17.         close(outStream);   
  18.         close(out);   
  19.     }   
  20. }  

 

如果需要监测复制进度,可以用第二快的方法(留意buffer的大小,对速度有很大影响):

C-sharp代码 复制代码
  1. private static void nioBufferCopy(File source, File target) {   
  2.     FileChannel in = null;   
  3.     FileChannel out = null;   
  4.     FileInputStream inStream = null;   
  5.     FileOutputStream outStream = null;   
  6.     try {   
  7.         inStream = new FileInputStream(source);   
  8.         outStream = new FileOutputStream(target);   
  9.         in = inStream.getChannel();   
  10.         out = outStream.getChannel();   
  11.         ByteBuffer buffer = ByteBuffer.allocate(4096);   
  12.         while (in.read(buffer) != -1) {   
  13.             buffer.flip();   
  14.             out.write(buffer);   
  15.             buffer.clear();   
  16.         }   
  17.     } catch (IOException e) {   
  18.         e.printStackTrace();   
  19.     } finally {   
  20.         close(inStream);   
  21.         close(in);   
  22.         close(outStream);   
  23.         close(out);   
  24.     }   
  25. }  

 

常用的方法1是:

C-sharp代码 复制代码
  1. private static void customBufferBufferedStreamCopy(File source, File target) {   
  2.     InputStream fis = null;   
  3.     OutputStream fos = null;   
  4.     try {   
  5.         fis = new BufferedInputStream(new FileInputStream(source));   
  6.         fos = new BufferedOutputStream(new FileOutputStream(target));   
  7.         byte[] buf = new byte[4096];   
  8.         int i;   
  9.         while ((i = fis.read(buf)) != -1) {   
  10.             fos.write(buf, 0, i);   
  11.         }   
  12.     }   
  13.     catch (Exception e) {   
  14.         e.printStackTrace();   
  15.     } finally {   
  16.         close(fis);   
  17.         close(fos);   
  18.     }   
  19. }  

 

常用的方法2是:

C-sharp代码 复制代码
  1. private static void customBufferStreamCopy(File source, File target) {   
  2.     InputStream fis = null;   
  3.     OutputStream fos = null;   
  4.     try {   
  5.         fis = new FileInputStream(source);   
  6.         fos = new FileOutputStream(target);   
  7.         byte[] buf = new byte[4096];   
  8.         int i;   
  9.         while ((i = fis.read(buf)) != -1) {   
  10.             fos.write(buf, 0, i);   
  11.         }   
  12.     }   
  13.     catch (Exception e) {   
  14.         e.printStackTrace();   
  15.     } finally {   
  16.         close(fis);   
  17.         close(fos);   
  18.     }   
  19. }  

你可能感兴趣的:(java)