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();
}
}
}
}

相关文章:

  • 2021-12-06
  • 2021-10-19
  • 2022-01-17
  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2021-09-14
  • 2021-11-05
猜你喜欢
  • 2022-12-23
  • 2021-11-16
  • 2021-11-10
  • 2021-10-25
  • 2021-10-27
  • 2021-10-27
  • 2021-12-06
相关资源
相似解决方案