您的位置:首页 > 编程语言 > Java开发

Java 高效复制文件方法

2015-01-28 16:51 204 查看
通过FileChanel 方法复制Java文件,比通常的内存读写 方式效率要好很多

public static void headCreate(File f1, File f2) { //f1 为源文件 f2 为目标文件,本方法的功能是 复制f1文件 为f2

FileInputStream fi = null;

FileOutputStream fo = null;

FileChannel in = null;

FileChannel out = null;

try {

fi = new FileInputStream(f1);

fo = new FileOutputStream(f2);

in = fi.getChannel();//得到f1 的文件通道

out = fo.getChannel();//得到f12的文件通道

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

}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: