当前位置: 技术问答>java相关
java helloworld出错
来源: 互联网 发布时间:2015-04-22
本文导语: Exception in thread "main" java.lang.noClassDefFoundErr:helloworld class helloworld { public static void main (String args[]) { System.out.println("hello world!");} } | 在class 前加入 public | 在...
Exception in thread "main" java.lang.noClassDefFoundErr:helloworld
class helloworld {
public static void main (String args[]) {
System.out.println("hello world!");}
}
class helloworld {
public static void main (String args[]) {
System.out.println("hello world!");}
}
|
在class 前加入 public
|
在AUTOEXEC.BAT文件中加:
SET CLASSPATH=.; 后面再接设定的CLASSPATH
SET CLASSPATH=.; 后面再接设定的CLASSPATH
|
set classpath=.
java helloworld
java helloworld
|
和public 没有关系,是classpath的问题,你可以搜索论坛相关问题。
|
先加个public 看看
要是不行
你把它copy到 jdkbin目录下再运行
要是可以运行的话
就是path设置不对了
一般运行这个程序好像不用管classpath吧?
要是不行
你把它copy到 jdkbin目录下再运行
要是可以运行的话
就是path设置不对了
一般运行这个程序好像不用管classpath吧?