用于编译和运行java代码的不可或缺的标志

时间:2014-09-22 17:59:00

标签: java flags

我今天开始学习java,使用当前的JDK进行编译/运行,使用notepad ++作为编辑器。我不想使用IDE,直到我自己理解了它是如何工作的而不是点击某个按钮,所以我使用shellcommands来编译和运行我的第一个简单程序。

不幸的是,我发现的大多数教程都是使用NetBeans或Eclipse来覆盖示例,所以最后一些按钮被按下并且魔术开始了。

我理解当我使用javac编译代码并在JVM中运行它时会发生什么,但我需要认真的线索来知道它是否以正确的方式发生。

我知道,这些标志非常适合于此目的,并且允许我控制javac完成的编译过程的几乎所有步骤,并且在运行时由JVM控制,但oracle提供的正式标志列表绝对是压倒性的。< / p>

因此,正如标题所示,我正在寻找一些参考提及并解释编译和运行java代码安全稳定所必需的最重要的标志。到目前为止我发现的任何东西要么不关心这个,使用默认的IDE配置或处理远远高于我的水平上的标志的东西,所以我决定在这里要求进一步推进。

1 个答案:

答案 0 :(得分:1)

您只需输入javacjava并按Enter键即可获得他们使用的所有选项。你的输出将是这样的:

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\StackOverflow>java
Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
    -d32          use a 32-bit data model if available
    -d64          use a 64-bit data model if available
    -client       to select the "client" VM
    -server       to select the "server" VM
    -hotspot      is a synonym for the "client" VM  [deprecated]
                  The default VM is client.

    -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 m
ore details.  

同样,您将获得javac的输出。