欢迎来到求知题库网 考试题库官网
全部科目 > java工程师信产部认证考试

单项选择题

在J2EE中,如果去编译并运行下面的代码,在这里假定在当前目录下没有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=new FileInputStream("Hello.txt");  } 
catch (FileNotFoundException fne) { 
System.out.println("No such file found");         
return -1;     } 
catch(IOException ioe)  { }     finally { 
System.out.println("Doing finally");     } 
return 0;   } } 
结果会输出()。 

    A.No such file found
    B.No such file found -1
    C.No such file found doing finally -1
    D.0

点击查看答案

相关考题