当前位置: 代码迷 >> Java相关 >> [求助]使用JCreator LE中的问题!
  详细解决方案

[求助]使用JCreator LE中的问题!

热度:137   发布时间:2005-07-27 00:52:00.0
[求助]使用JCreator LE中的问题!

我安装的JCreator 2.00 LE,为什么每次写好JAVA代码,点击编译按钮,会出现如下信息…… --------------------Configuration: JDK version <Default>-------------------- javac: invalid flag: Usage: javac <options> <source files> where possible options include: -g Generate all debugging info -g:none Generate no debugging info -g:{lines,vars,source} Generate only some debugging info -nowarn Generate no warnings -verbose Output messages about what the compiler is doing -deprecation Output source locations where deprecated APIs are used -classpath <path> Specify where to find user class files -sourcepath <path> Specify where to find input source files -bootclasspath <path> Override location of bootstrap class files -extdirs <dirs> Override location of installed extensions -d <directory> Specify where to place generated class files -encoding <encoding> Specify character encoding used by source files -source <release> Provide source compatibility with specified release -target <release> Generate class files for specific VM version -help Print a synopsis of standard options

Process completed. 我在命令提示符下用javac命令编译就没有问题! 请高手帮忙解决一下!谢谢!

搜索更多相关的解决方案: JCreator  JAVA  debugging  javac  Generate  

----------------解决方案--------------------------------------------------------
正常,可以使用
----------------解决方案--------------------------------------------------------
不可以啊……

反正点了编译按钮再点运行按钮

不出结果……

显示的是:

Exception in thread "main" java.lang.NoClassDefFoundError: a

我测试程序是最简单的:
public class a{
public static void main(String args[]){
  System.out.println("how are you !");
}
}


但是在命令提示符里,用javac a.java编译,java a运行,都正常,可以出结果!

----------------解决方案--------------------------------------------------------
如果你想在Jc里面编译的话看看设置,就是关于编译器的设置那一项,如果你不会,那么就老老实实cmd编译吧反正也不麻烦。我就是JC+cmd编译的
----------------解决方案--------------------------------------------------------
有道理啊…… JC里面的设置我调整了好几次都不行…… 看来我也只能JC+cmd了,呵呵 也挺好,以前我是TXT-JAVA+cmd,^_^ 谢谢marer 和  tempnetbar 
----------------解决方案--------------------------------------------------------