当前位置: 代码迷 >> Java相关 >> Exception inthread "main" java.lang.NoSucheMethodError:main
  详细解决方案

Exception inthread "main" java.lang.NoSucheMethodError:main

热度:771   发布时间:2010-06-27 14:33:31.0
Exception inthread "main" java.lang.NoSucheMethodError:main
请朋友帮看看这问题出现哪里? 编译可以过,运行时出出现如图提示!





代码如下:



import java.io.*;

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 编辑 ]
搜索更多相关的解决方案: Exception  main  java  inthread  lang  

----------------解决方案--------------------------------------------------------
你的程序没有问题,可能你的JDK环境设置有问题
----------------解决方案--------------------------------------------------------
  相关解决方案