nio方式实现的文件上传,文件拷贝

netty实现的拷贝的方法;
首先引入Channel概念,在NIO编程中,数据读取都是从buff写到channel,从channel读取到buffer中;channel就相当于标准io的stream;(具体可以参考http://www.iteye.com/magazines/132-Java-NIO);


这里直接上代码:对比了标准io拷贝文件和NIO文件拷贝;

标准的io文件拷贝:
public static void copyFileCommon(String file_orignal,String file_des){
FileInputStream fis=null;
FileOutputStream fos=null;
try {
fis=new FileInputStream(file_orignal);
fos=new FileOutputStream(file_des);
try {
byte[] bytes=new byte[2048];
int i;
while((i=fis.read(bytes)) !=-1){
fos.write(bytes,0,i);
}
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
if(fis!=null)fis.close();
if(fos !=null)fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
netty实现的文件拷贝:
public static void copyFile(String file_orignal,String file_des){
FileInputStream fis=null;
FileOutputStream fos=null;
FileChannel fileInChannel=null;
FileChannel fileOutChannel=null;
try {
fis=new FileInputStream(file_orignal);
fos=new FileOutputStream(file_des);
fileInChannel=fis.getChannel();
fileOutChannel=fos.getChannel();
fileInChannel.transferTo(0, fileInChannel.size(), fileOutChannel);
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
if(fis!=null)fis.close();
if(fileInChannel!=null)fileInChannel.close();
if(fos!=null)fos.close();
if(fileOutChannel!=null)fileOutChannel.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}


总结:两种方法都能实现文件拷贝,但是nio方式实现的文件拷贝效率明显高于标准的io拷贝,推荐第二中方式拷贝文件的方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值