文章列表
题,本代码是通过使用JAVA中的Channel实现的拷贝文件的例子,代码中的注释已经比较清晰说明了其实现过程:
public static void main(String[] args) throws IOException {
FileInputStream in = new FileInputStream(new File("./NioTestFile.txt"));
FileChannel fileChannel = in.getChannel();// 源文件的通道
FileOutputStream out = new FileOutputStream(n ...