码迷,mamicode.com
首页 > 编程语言 > 详细

使用NIO快速复制Java文件

时间:2018-02-02 00:44:12      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:author   null   file   channel   bsp   stream   快速   throw   trouble   

package com.test.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;

/**
* 使用NIO快速复制Java文件
*
* @author Administrator
*
*/
public class FileCopy {

@SuppressWarnings("resource")
public static void fileCopy(File in, File out)

throws IOException {

FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
// inChannel.transferTo(0, inChannel.size(), outChannel);
// original -- apparently has trouble copying large files on Windows
// magic number for Windows, 64Mb - 32Kb)
int maxCount = (64 * 1024 * 1024) - (32 * 1024);
long size = inChannel.size();
long position = 0;
while (position < size) {
// &nbsp;
position += inChannel.transferTo(position, maxCount, outChannel);
}
} finally {
if (inChannel != null) {
// &nbsp;
inChannel.close();
}
if (outChannel != null) {
// &nbsp;
outChannel.close();
}
}
}
}

使用NIO快速复制Java文件

标签:author   null   file   channel   bsp   stream   快速   throw   trouble   

原文地址:https://www.cnblogs.com/personal-blog/p/8401580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!