try,finally自动关流

public class demon7_tryfinally {

    public static void main(String[] args) throws IOException {
        //demo1();
        try(
            FileInputStream fi2 = new FileInputStream("xxx.txt");
            FileOutputStream fo2 = new FileOutputStream("yyy.txt");
            MyClose mc = new MyClose();    //  自动关流的原因是实现了自动关闭Autocloseable接口
            )
        {
            int b ;
            while ((b = fi2.read())!= -1) {
                fo2.write(b);
            }
        }        
    }

    public static void demo1() throws FileNotFoundException, IOException {
        FileInputStream fi1 = null;
        FileOutputStream fo1 = null;    //  局部变量必须赋值
        try{
            fi1 = new FileInputStream("xxx.txt");
            fo1 = new FileOutputStream("yyy.txt");
            int b;
            while((b = fi1.read())!=-1){
                fo1.write(b);
            }  
        }
        finally {
            try{
                if (fi1 != null) {
                    fi1.close();    //  尽量能关一个就关一个, 节省资源
                }
            }finally{
                if (fo1 != null) {
                    fo1.close();
                }
            }
            
            
            
        }
    }

}

class MyClose implements AutoCloseable{
    public void close() {
        System.out.println("wo guan le ");
    }
}

 

转载于:https://www.cnblogs.com/yaobiluo/p/11312422.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值