黑马程序员技术交流社区

标题: io流try catch finally [打印本页]

作者: SunCowbee    时间: 2016-9-12 02:17
标题: io流try catch finally
public static void main(String[] args) {
                FileInputStream fis = null;
                FileOutputStream fos = null;
                try {
                        fis = new FileInputStream("e:\\aaaaaa\\ccc.txt");
                        fos = new FileOutputStream("number.txt");
                        int hc = 0;
                        while((hc = fis.read())!=-1){
                                fos.write(hc);
                        }
                       
                } catch (IOException e) {
                        System.out.println(e);
                        throw new RuntimeException("文件复制失败");
                }finally{
                        try {
                                if(fos!=null)
                                        fos.close();
                        } catch (IOException e2) {
                                throw new RuntimeException("释放资源失败");
                        }finally{
                                try {
                                        if(fis!=null)
                                                fis.close();
                                } catch (IOException e3) {
                                        throw new RuntimeException("释放资源失败");
                                }
                        }
                       
                }
        }

这里的throw 语句为啥不能用System.out.println("文件复制失败");




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2