为啥命令行不能识别这个 java 命令?

Posted

技术标签:

【中文标题】为啥命令行不能识别这个 java 命令?【英文标题】:How come command line isn't recognizing this java command?为什么命令行不能识别这个 java 命令? 【发布时间】:2013-01-28 08:36:08 【问题描述】:

我在这里输入java -classpath C:\blahblahblah\software_engineering\cs2.jar 作为建议的一部分:Why does my IDE find the JAR but my command line doesn't?。

我很确定这是一个有效的命令,但我却收到了这个累赘的列表:

Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)

where options include:
    -server       to select the "server" VM
    -hotspot      is a synonym for the "server" VM  [deprecated]
                  The default VM is server.

    -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 | -jre-no-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
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
                  disable assertions
    -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

怎么会?

【问题讨论】:

你没有告诉java运行什么java文件你只给了它一个类路径。 你读过这份疲惫清单的前四行了吗? 【参考方案1】:

你给它一个类路径,而不是要执行的类的名称。您也在您的类路径中包含 jar 文件 - 而不是包含您的类文件的目录。

所以重复我对另一个问题的回答:

java -cp .;cs2.jar CB

(从包含CB.classcs2.jar 的目录运行。)

【讨论】:

我一直认为分号是在分隔两个单独的命令。我很抱歉。谢谢。

以上是关于为啥命令行不能识别这个 java 命令?的主要内容,如果未能解决你的问题,请参考以下文章

为啥我不能指定环境变量并在同一命令行中回显它?

命令行通过执行shell脚本启动java类,命令行“卡住”or“挂起”or“停顿”,不能输入新的命令了,怎么办

为啥我不能使用 MobileFirst 命令行工具添加合适的服务器配置文件?

为啥我不能从我的 java 程序运行批处理命令? [复制]

为啥我不能从 Spyder 导入 scikit-learn,但我可以从命令行导入?

Bash 脚本无法识别命令行参数? [复制]