1

当我尝试在 Eclipse 上运行我的代码时,会出现此错误:

用法:javaw [-options] 类 [args...]
           (执行一个类)
   或 javaw [-options] -jar jarfile [args...]
           (执行一个jar文件)
其中选项包括:
    -d32 使用 32 位数据模型(如果可用)
    -d64 使用 64 位数据模型(如果可用)
    -server 选择“服务器”VM
    -hotspot 是“服务器”虚拟机的同义词 [已弃用]
                  默认虚拟机是服务器。

-cp <class search path of directories and zip/jar files> -classpath <class search path of directories and zip/jar files> A ; separated list of directories, JAR archives, and ZIP archives to search for class files. -D<name>=<value> set a system property -verbose:[class|gc|jni] enable verbose output -version print product version and exit -version:<value> require the specified version to run -showversion print product version and continue -jre-restrict-search | -no-jre-restrict-search include/exclude user private JREs in the version search -? -help print this help message -X print help on non-standard options -ea[:<packagename>...|:<classname>] -enableassertions[:<packagename>...|:<classname>] enable assertions with specified granularity -da[:<packagename>...|:<classname>] -disableassertions[:<packagename>...|:<classname>] disable assertions with specified granularity -esa | -enablesystemassertions enable system assertions -dsa | -disablesystemassertions disable system assertions -agentlib:<libname>[=<options>] load native agent library <libname>, e.g. -agentlib:hprof see also, -agentlib:jdwp=help and -agentlib:hprof=help -agentpath:<pathname>[=<options>] load native agent library by full pathname -javaagent:<jarpath>[=<options>] load Java programming language agent, see java.lang.instrument -splash:<imagepath> show splash screen with specified image See http://www.oracle.com/technetwork/java/javase/documentation/index.html for more details.

我尝试注释我的完整代码,但仍然出现此错误。

4

4 回答 4

1

看来你没有正确设置你的java路径。

在 Windows 上使用 Java 1.6 设置 Eclipse

如何安装和开始使用 Java 编程

于 2013-02-21T02:43:35.673 回答
0

如果这仅发生在特定项目并且其他项目运行良好,那么您的默认运行配置可能已更改。您可以尝试以下操作 - 运行 -> 运行方式 -> 1 Java 应用程序。

于 2015-01-27T20:28:17.223 回答
0

以干净模式运行eclipse

编辑位于 Eclipse 安装目录中的 eclipse.ini 文件并插入 -clean 作为第一行。

于 2013-12-06T17:31:56.443 回答
-1

我通过删除一些旧的运行时配置解决了这个问题。然后 Eclipse 开始再次自动生成它们。

于 2014-04-07T17:23:28.130 回答