通过java在Linux Server中将文件从一个位置复制到另一个位置的最佳方法

时间:2017-06-29 09:59:42

标签: java linux file server copy

通过java在Linux Server中将文件从一个位置复制到另一个位置的最佳方法

1 个答案:

答案 0 :(得分:0)

private static void copyFileUsingStream(File source, File dest) throws IOException {
InputStream is = null;
OutputStream os = null;
try {
    is = new FileInputStream(source);
    os = new FileOutputStream(dest);
    byte[] buffer = new byte[1024];
    int length;
    while ((length = is.read(buffer)) > 0) {
        os.write(buffer, 0, length);
    }
} finally {
    is.close();
    os.close();
}

}