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流文件拷贝文件(字节流标准写法)的主要内容,如果未能解决你的问题,请参考以下文章

IO流 文件夹的拷贝(字节流)

java IO流文件拷贝文件(字符流标准写法)

Java IO流 - 字节流的使用详细介绍

[JAVA]字节流拷贝文件

JAVA——IO流-字符流和字节流

Java 演示如何用标准的输入输出流重定向到一个文件