Java: 复制文件最快方法

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

 

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

[c-sharp] view plain copy print ?

常用的方法1是:

[c-sharp] view plain copy print ?

 

常用的方法2是:

[c-sharp] view plain copy print ?
  1. private staticvoid 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 = newbyte[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. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值