原 自学JVAVA---(47)--(内功心法【45】)文件字节流

文件字节流
【小城贝尔】
文件形式千千万,都靠字节来转换。
操作使用字节流,读入写出都自由。
数组装取效率高,返回长度要用好。
字符操作稍不便,另有封装字符见。

public class FileIoDemo {
    public static void main(String[] args){
        //FileInputStream
        //jdk 1.7之后可以使用try with  resource  写法自动关闭流
        try (InputStream in = new FileInputStream("E:/picture/demo.txt")){
            byte[] bys = new  byte[21];
            int len = -1;
            while ((len = in.read(bys)) != -1){
                //"gbk" 解码
                String str = new String(bys,0,len,"gbk");
                System.out.println(str);
            }
        }catch (IOException e){
            e.printStackTrace();
        }

        //FileInputStream
        InputStream in = null;
        //FileOutputStream
        OutputStream out = null;
        try{
            byte bys[] = new byte[1024];
            in = new FileInputStream("E:/java1.mp4");
            out = new FileOutputStream("E:/java3copy.mp4");
            int len = -1;
            while ((len = in.read(bys)) != -1){
                out.write(bys,0,len);
            }
            //刷新流管道
            out.flush();
        }catch(IOException e){
            e.printStackTrace();
        }finally {
            //关闭流 先打开到后关闭
            if(null != out){
                try {
                    out.close();
                }catch (IOException E){
                    E.printStackTrace();
                }
            }

            if(null != in){
                try {
                    in.close();
                }catch (IOException E){
                    E.printStackTrace();
                }
            }

        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值