The Java Command - java and javaw
suggest changeSyntax
java [ <opt> ... ] <class-name> [ <argument> ... ]java [ <opt> ... ] -jar <jar-file-pathname> [ <argument> ... ]
Remarks
The java command is used for running a Java application from the command line. It is available as a part of any Java SE JRE or JDK.
On Windows systems there are two variants of the java command:
- The
javavariant launches the application in a new console window. - The
javawvariant launches the application without creating a new console window.
On other systems (e.g. Linux, Mac OSX, UNIX) only the java command is provided, and it does not launch a new console window.
The <opt> symbol in the syntax denotes an option on the java command line. The “Java Options” and “Heap and stack sizing options” topics cover the most commonly used options. Others are covered in the http://stackoverflow.com/documentation/java/2500/jvm-flags topic.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents