transferTo和transferFrom

transferTo和transferFrom允许我们将一个通道和另一个通道直接相连,这样很容易实现文件拷贝的功能,如下代码:
String[] arr=new String[]{"D:\\data.txt","D:\\data2.txt"};
		FileChannel in=new FileInputStream(arr[0]).getChannel(),
				    out =new FileOutputStream(arr[1]).getChannel();
		
		//将一个通道和另一个通道直接相连接
		in.transferTo(0, in.size(), out);

你可能感兴趣的:(FileChannel,transferto,transferfrom)