(转) java 复制文件,不使用输出流复制,高效率,文件通道的方式复制文件

时间:2014-10-08 13:58:55   收藏:0   阅读:181
public static void fileChannelCopy(File s, File t) {
		
		FileInputStream fi = null;
		
		FileOutputStream fo = null;
		
		FileChannel in = null;
		
		FileChannel out = null;
		
		try {
			
			fi = new FileInputStream(s);
			
			fo = new FileOutputStream(t);
			
			in = fi.getChannel();// 得到对应的文件通道
			
			out = fo.getChannel();// 得到对应的文件通道
			
			in.transferTo(0, in.size(), out);// 连接两个通道,并且从in通道读取,然后写入out通道
			
		} catch (IOException e) {
			
			e.printStackTrace();
			
		} finally {
			
			try {
				
				fi.close();
				
				in.close();
				
				fo.close();
				
				out.close();
				
			} catch (IOException e) {
				
				e.printStackTrace();
				
			}
			
		}
		
	}
	

  

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!