Q:在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(