当前位置: 技术问答>java相关
java入门者的门题,送分的
来源: 互联网 发布时间:2015-08-31
本文导语: 为什么我java编程成功,但是运行时说什么:Exception in thread "main" java.lang.noclassdeffounderror :aa;我在aa.java是就一个打印代码,程序准没错,因为在jcreator中都可以用,盼回答! | 这是因为你的...
为什么我java编程成功,但是运行时说什么:Exception in thread "main" java.lang.noclassdeffounderror :aa;我在aa.java是就一个打印代码,程序准没错,因为在jcreator中都可以用,盼回答!
|
这是因为你的环境变量里没有把你的class文件所在路径包含进去,
在你的class所在目录下,运行:set classpath=%classpath%;.
这样就可以搞定了。你的jcreator下已经被系统设过了,所以可以运行。
在你的class所在目录下,运行:set classpath=%classpath%;.
这样就可以搞定了。你的jcreator下已经被系统设过了,所以可以运行。
|
设置系统环境变量
path=jdk安装路径bin;
classpath=.;jdk安装路径lib;
path=jdk安装路径bin;
classpath=.;jdk安装路径lib;
|
http://www.csdn.net/Develop/read_article.asp?id=12699
http://www.csdn.net/expert/topic/971/971217.xml?temp=.3411829
http://www.csdn.net/expert/topic/971/971217.xml?temp=.3411829
|
楼上的都说了,我也没有什么可说的了