Exception inthread "main" java.lang.NoSucheMethodError:main
请朋友帮看看这问题出现哪里? 编译可以过,运行时出出现如图提示!代码如下:
import *;
class N {
static void p(String s){
System.out.println(s);
}
}
public class File1{
public static void main(String args[]){
File f1 = new File("D:/java/ABC.txt");
N.p("File Name:" + f1.getName());
N.p("Path:" + f1.getPath());
}
}
[ 本帖最后由 talklei 于 2010-6-27 16:46 编辑 ]