在J2EE中,如果去编译并运行下面的代码,在这里假定在当前目录下没有Hello.txt文件:<br /> import java.io.*; <br /> public class Mine { <br /> public static void main(String argv[]){     <br /> Mine m=new Mine(); <br /> System.out.println(m.amethod());   } <br /> public int amethod() {     try { <br /> FileInputStream dis=new FileInputStream("Hello.txt");  } <br /> catch (FileNotFoundException fne) { <br /> System.out.println("No such file found");         <br /> return -1;     } <br /> catch(IOException ioe)  { }     finally { <br /> System.out.println("Doing finally");     } <br /> return 0;   } } <br /> 结果会
A、No such file found
B、No such file found -1
C、No such file found doing finally -1
D、0