黑马程序员技术交流社区

标题: 29. 如果在当前目录下不存在Hello.txt 文件,试图编译和运行... [打印本页]

作者: liuruhui    时间: 2015-12-11 21:43
标题: 29. 如果在当前目录下不存在Hello.txt 文件,试图编译和运行...

import java.io.*;

public class Mine {

    public static void main(String argv[]){

         Mine m=new Mine();

         System.out.println(m.amethod());

    }

    public int amethod() {

         try {

             FileInputStream dis=

newFileInputStream("Hello.txt");

         }catch (FileNotFoundException fne) {

             System.out.println("No suchfile found");

             return -1;

         }catch(IOException ioe) {

         } finally{

             System.out.println("Doingfinally");

         }

         return 0;

    }

}






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