java IO流文件拷贝文件(字节流标准写法)
Posted sheng-sjk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java IO流文件拷贝文件(字节流标准写法)相关的知识,希望对你有一定的参考价值。
public static void copyFile(String srcPath, String destPath) { FileInputStream fis = null; FileOutputStream fos = null; try { fis = new FileInputStream(srcPath); fos = new FileOutputStream(destPath); byte[] byt = new byte[1024 * 1024]; int len = 0; while ((len = fis.read(byt)) != -1) { fos.write(byt, 0, len); } } catch (IOException e) { throw new RuntimeException(e); } finally { try { if (fis != null) { fis.close(); } } catch (IOException e) { throw new RuntimeException(e); } finally { if (fos != null) { try { fos.close(); } catch (IOException e) { throw new RuntimeException(e); } } } } }
以上是关于java IO流文件拷贝文件(字节流标准写法)的主要内容,如果未能解决你的问题,请参考以下文章