java - the Java application launcher

SYNOPSIS

    java [ options ] class [ argument ... ]
    java [ options ] -jar file.jar [ argument ... ]
    javaw [ options ] class [ argument ... ]
    javaw [ options ] -jar file.jar [ argument ... ]
    oldjava [ options ] class [ argument ... ]
    oldjavaw [ options ] class [ argument ... ]
options
Command-line options.
class
Name of the class to be invoked.
file.jar
Name of the jar file to be invoked. Used only with -jar.
argument
Argument passed to the main function.

DESCRIPTION

The java tool launches a Java application. It does this by starting a Java runtime environment, loading a specified class, and invoking that class's main method. This method must have the following signature:
    public static void main(String[])
By default, the first non-option argument is the name of the class to be invoked. A fully-qualified class name should be used. If the -jar option is specified, the first non-option argument is the name of a JAR archive containing class and resource files for the application, with the startup class indicated by the Main-Class manifest header.

The Java runtime searches for the startup class, and other classes used, in three sets of locations: the bootstrap class path, the installed extensions, and the user class path.

Non-option arguments after the class name or JAR file name are passed to the main function.

JAVA AND OLDJAVA

These are the differences between java and oldjava This command using oldjava
oldjava -classpath <path> ...
is equivalent to this command using java
java -Xbootclasspath:<path> -Djava.ext.dirs= ...
where in both cases <path> contains the file rt.jar. (See the JDK File Structure document for a description of rt.jar and its location in the JDK software.)

THE JIT

The default behavior of the launcher is to execute bytecodes using a Just-in-Time compiler, or JIT. The default compiler is located at jre\bin\symcjit.dll. When a class is loaded, the JIT translates the class bytecodes into native machine code. Using a JIT causes a slight delay after each class load, but can improve overall program performance. In some cases, execution time will improve by a factor of ten.

If the JIT is disabled, bytecodes are executed directly by an interpreter. There are two ways to disable the JIT:

You can also use JAVA_COMPILER or java.compiler to the specify that an alternative JIT should be used:
C:\> set JAVA_COMPILER=foo
or
C:\> java -Djava.compiler=foo myapp
The .dll filename extension is added to "foo", so that, in this example, the virtual machine will search for a JIT compiler named foo.dll. The search for the alternative compiler is made in the jre\bin directory and on the system's PATH. If no such compiler is found, the virtual machine will default to using the interpreter.

OPTIONS

The launcher has a set of standard options that are supported on the current runtime environment and will be supported in future releases. An additional set of non-standard options are specific to the current virtual machine implementation and are subject to change in the future. Non-standard options begin with -X

Standard Options

-classpath classpath
-cp classpath
Specify a list of directories, JAR archives, and ZIP archives to search for class files. Class path entries are separated by semicolons (;). Specifying -classpath or -cp overrides any setting of the CLASSPATH environment variable.

Used with java or javaw, -classpath or -cp only specify the class path for user classes. Used with oldjava or oldjavaw, -classpath or -cp specify the class path for both user classes and bootstrap classes.

If -classpath and -cp are not used and CLASSPATH is not set, the user class path consists of the current directory (.).

For more information on class paths, see Setting the Class Path.

-Dproperty=value
Set a system property value.

-jar
Execute a program encapsulated in a JAR archive. The first argument is the name of a JAR archive file instead of a startup class name. The startup class is specified by the Main-Class manifest header. The JAR file is the source of all user classes, and other user class path settings are ignored.

The oldjava and oldjavaw tools do not support the -jar option.

-verbose
-verbose:class
Display information about each class loaded.

-verbose:gc
Report on each garbage collection event.

-verbose:jni
Report information about use of native methods and other Java Native Interface activity.

-version
Display version information and exit.

-?
-help
Display usage information and exit.

-X
Display information about non-standard options and exit.

Non-Standard Options

-Xbootclasspath:bootclasspath
Specify a semicolon-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the JDK 1.2 software.

-Xdebug
Start with the debugger enabled. The Java interpereter prints out a password for jdb's use. Refer to jdb description for more details and an example.

-Xnoclassgc
Disable class garbage collection

-Xmsn
Specify the initial size of the memory allocation pool. This value must greather than 1000. To multiply the value by 1000, append the letter k. To multiply the value by 1 million, append the letter m. The default value is 1m

-Xmxn
Specify the maximum size of the memory allocation pool. This value must greather than 1000. To multiply the value by 1000, append the letter k. To multiply the value by 1 million, append the letter m. The default value is 16m.

-Xrunhprof[:help][:<suboption>=<value>,...]
Enables cpu, heap, or monitor profiling. This option is typically followed by a list of comma-separated "<suboption>=<value>" pairs. Run the command java -Xrunhprof:help to obtain a list of suboptions and their default values.

-Xrs
Reduce the use of operating system signals.

-Xcheck:jni
Perform additional check for Java Native Interface functions.

SEE ALSO