JAVA IO 字节流 FileInputStream FileOutputStream

Posted 行尸走肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA IO 字节流 FileInputStream FileOutputStream相关的知识,希望对你有一定的参考价值。

摘抄自 b站尚硅谷JAVA视频教程

 

与字符流操作基本一致.这里给出使用字节流复制一张图片的代码.

File file = null;
        File gg = null;
        gg = new File("gg.jpg");
        file = new File("ggCopy.jpg");
        FileOutputStream fo=null;
        FileInputStream fi =null;
        try {
            fo = new FileOutputStream(file);
            fi = new FileInputStream(gg);

            byte [] bytes = new byte[5];
            int len =0;
            while ((len=fi.read(bytes))!=-1){
                fo.write(bytes,0,len);
                ;
            }
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(fo!=null){
                try{
                    fo.close();
                }catch (IOException e){
                    e.printStackTrace();
                }
            }
            if(fi!=null){
                try{
                    fi.close();
                }catch (IOException e){
                    e.printStackTrace();
                }
            }
        }

 

以上是关于JAVA IO 字节流 FileInputStream FileOutputStream的主要内容,如果未能解决你的问题,请参考以下文章

Java IO流-字节流

java之IO输出字节流相关操作

java io流(字节流)复制文件

Java IO 字节流与字符流

Java IO3:字节流

Java之IO其它字节流