blob: 3348e8ed03f8378229e4e839e1be8c9b1a1d4d4f [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001.'" t
2." ." Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
3." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4."
5." This code is free software; you can redistribute it and/or modify it
6." under the terms of the GNU General Public License version 2 only, as
7." published by the Free Software Foundation.
8."
9." This code is distributed in the hope that it will be useful, but WITHOUT
10." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12." version 2 for more details (a copy is included in the LICENSE file that
13." accompanied this code).
14."
15." You should have received a copy of the GNU General Public License version
16." 2 along with this work; if not, write to the Free Software Foundation,
17." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18."
19." Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20." CA 95054 USA or visit www.sun.com if you need additional information or
21." have any questions.
22."
23." `
24.TH java 1 "07 Aug 2006"
25." Generated by html2man
26
27.LP
28.SH NAME
29java \- the Java application launcher
30.LP
31.SH "SYNOPSIS"
32.LP
33.nf
34\f3
35.fl
36 \fP\f3java\fP [ options ] class [ argument ... ]
37.fl
38 \f3java\fP [ options ] \f3\-jar\fP file.jar [ argument ... ]
39.fl
40.fi
41
42.LP
43.RS 3
44
45.LP
46.RS 3
47.TP 3
48options
49Command\-line options.
50.TP 3
51class
52Name of the class to be invoked.
53.TP 3
54file.jar
55Name of the jar file to be invoked. Used only with \f2\-jar\fP.
56.TP 3
57argument
58Argument passed to the \f3main\fP function.
59.RE
60
61.LP
62.RE
63.SH "DESCRIPTION"
64.LP
65
66.LP
67.LP
68The \f3java\fP tool launches a Java application. It does this by starting a Java runtime environment, loading a specified class, and invoking that class's \f3main\fP method.
69.LP
70.LP
71The method must be declared public and static, it must not return any value, and it must accept a \f2String\fP array as a parameter. The method declaration must look like the following:
72.LP
73.nf
74\f3
75.fl
76 public static void main(String args[])
77.fl
78\fP
79.fi
80
81.LP
82.LP
83By 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 \f3\-jar\fP option is specified, the first non\-option argument is the name of a \f3JAR\fP archive containing class and resource files for the application, with the startup class indicated by the \f3Main\-Class\fP manifest header.
84.LP
85.LP
86The 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.
87.LP
88.LP
89Non\-option arguments after the class name or JAR file name are passed to the \f3main\fP function.
90.LP
91.SH "OPTIONS"
92.LP
93
94.LP
95.LP
96The launcher has a set of standard options that are supported on the current runtime environment and will be supported in future releases. In addition, the current implementations of the virtual machines support a set of non\-standard options that are subject to change in future releases.
97.LP
98.SH "Standard Options"
99.LP
100
101.LP
102.RS 3
103.TP 3
104\-client
105.LP
106Select the Java HotSpot Client VM. A 64\-bit capable jdk currently ignores this option and instead uses the Java Hotspot Server VM.
107.LP
108For default VM selection, see Server\-Class Machine Detection
109.TP 3
110\-server
111.LP
112Select the Java HotSpot Server VM. On a 64\-bit capable jdk only the Java Hotspot Server VM is supported so the \-server option is implicit.
113.LP
114For default VM selection, see Server\-Class Machine Detection
115.TP 3
116\-agentlib:libname[=options]
117Load native agent library \f2libname\fP, e.g.
118.LP
119\-agentlib:hprof
120.LP
121\-agentlib:jdwp=help
122.LP
123\-agentlib:hprof=help
124.LP
125For more information, see JVMTI Agent Command Line Options.
126.TP 3
127\-agentpath:pathname[=options]
128Load a native agent library by full pathname. For more information, see JVMTI Agent Command Line Options.
129.TP 3
130\-classpath classpath
131.TP 3
132\-cp classpath
133Specify a list of directories, JAR archives, and ZIP archives to search for class files. Class path entries are separated by colons (\f3:\fP). Specifying \f3\-classpath\fP or \f3\-cp\fP overrides any setting of the \f3CLASSPATH\fP environment variable.
134.LP
135If \f3\-classpath\fP and \f3\-cp\fP are not used and \f3CLASSPATH\fP is not set, the user class path consists of the current directory (\f4.\fP).
136.LP
137As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a java program cannot tell the difference between the two invocations).
138.br
139.br
140For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
141.LP
142For more information on class paths, see Setting the Class Path.
143.TP 3
144\-Dproperty=value
145Set a system property value.
146.TP 3
147\-d32
148.TP 3
149\-d64
150Request that the program to be run in a 32\-bit or 64\-bit environment, respectively. If the requested environment is not installed or is not supported, an error is reported.
151.LP
152Currently only the Java HotSpot Server VM supports 64\-bit operation, and the "\-server" option is implicit with the use of \-d64. And the "\-client" option is ignored with the use of \-d64. This is subject to change in a future release.
153.LP
154If neither \f3\-d32\fP nor \f3\-d64\fP is specified, the default is to run in a 32\-bit environment, except for 64\-bit only systems. This is subject to change in a future release.
155.TP 3
156\-enableassertions[:<package name>"..." | :<class name> ]
157.TP 3
158\-ea[:<package name>"..." | :<class name> ]
159Enable assertions. Assertions are disabled by default.
160.LP
161With no arguments, \f3enableassertions\fP or \f3\-ea\fP enables assertions. With one argument ending in \f2"..."\fP, the switch enables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch enables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch enables assertions in the specified class.
162.LP
163If a single command line contains multiple instances of these switches, they are processed in order before loading any classes. So, for example, to run a program with assertions enabled only in package \f2com.wombat.fruitbat\fP (and any subpackages), the following command could be used:
164.nf
165\f3
166.fl
167java \-ea:com.wombat.fruitbat... <Main Class>
168.fl
169\fP
170.fi
171.LP
172The \f3\-enableassertions\fP and \f3\-ea\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-enablesystemassertions\fP below.
173.TP 3
174\-disableassertions[:<package name>"..." | :<class name> ]
175.TP 3
176\-da[:<package name>"..." | :<class name> ]
177Disable assertions. This is the default.
178.LP
179With no arguments, \f3disableassertions\fP or \f3\-da\fP disables assertions. With one argument ending in \f2"..."\fP, the switch disables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch disables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch disables assertions in the specified class.
180.LP
181To run a program with assertions enabled in package \f2com.wombat.fruitbat\fP but disabled in class \f2com.wombat.fruitbat.Brickbat\fP, the following command could be used:
182.nf
183\f3
184.fl
185java \-ea:com.wombat.fruitbat... \-da:com.wombat.fruitbat.Brickbat <Main Class>
186.fl
187\fP
188.fi
189.LP
190The \f3\-disableassertions\fP and \f3\-da\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-disablesystemassertions\fP below.
191.TP 3
192\-enablesystemassertions
193.TP 3
194\-esa
195Enable asserts in all system classes (sets the \f2default assertion status\fP for system classes to \f2true\fP).
196.TP 3
197\-disablesystemassertions
198.TP 3
199\-dsa
200Disables asserts in all system classes.
201.LP
202.TP 3
203\-jar
204Execute a program encapsulated in a JAR file. The first argument is the name of a JAR file instead of a startup class name. In order for this option to work, the manifest of the JAR file must contain a line of the form \f3Main\-Class: \fP\f4classname\fP. Here, \f2classname\fP identifies the class having the \f2public\ static\ void\ main(String[]\ args)\fP method that serves as your application's starting point. See the Jar tool reference page and the Jar trail of the
205.na
206\f2Java Tutorial\fP @
207.fi
208http://java.sun.com/docs/books/tutorial/jar for information about working with Jar files and Jar\-file manifests.
209.LP
210When you use this option, the JAR file is the source of all user classes, and other user class path settings are ignored.
211.LP
212Note that JAR files that can be run with the "java \-jar" option can have their execute permissions set so they can be run without using "java \-jar". Refer to Java Archive (JAR) Files.
213.TP 3
214\-javaagent:jarpath[=options]
215Load a Java programming language agent, see java.lang.instrument.
216.TP 3
217\-verbose
218.TP 3
219\-verbose:class
220Display information about each class loaded.
221.TP 3
222\-verbose:gc
223Report on each garbage collection event.
224.TP 3
225\-verbose:jni
226Report information about use of native methods and other Java Native Interface activity.
227.TP 3
228\-version
229Display version information and exit.
230.TP 3
231\-version:release
232Specifies that the version specified by \f2release\fP is required by the class or jar file specified on the command line. If the version of the java command invoked does not meet this specification and an appropriate implementation is found on the system, the appropriate implementation will be used.
233.LP
234\f2release\fP not only can specify an exact version, but can also specify a list of versions called a version string. A version string is an ordered list of version ranges separated by spaces. A version range is either a version\-id, a version\-id followed by a star (*), a version\-id followed by a plus sign (+) , or two version\-ranges combined using an ampersand (&). The star means prefix match, the plus sign means this version or greater, and the ampersand means the logical anding of the two version\-ranges. For example:
235.nf
236\f3
237.fl
238\-version:"1.5.0_04 1.5*&1.5.1_02+"
239.fl
240\fP
241.fi
242The meaning of the above is that the class or jar file requires either version 1.5.0_02, or a version with 1.5 as a version\-id prefix and that is not less than 1.5.1_02. The exact syntax and definition of version strings may be found in Appendix A of the Java Network Launching Protocol & API Specification (JSR\-56).
243.LP
244For jar files, the usual preference is to specify version requirements in the jar file manifest rather than on the command line.
245.LP
246See the following NOTES section for important policy information on the use of this option.
247.TP 3
248\-showversion
249Display version information and continue.
250.TP 3
251\-?
252.TP 3
253\-help
254Display usage information and exit.
255.TP 3
256\-X
257Display information about non\-standard options and exit.
258.RE
259
260.LP
261.SS
262Non\-Standard Options
263.LP
264.RS 3
265
266.LP
267.RS 3
268.TP 3
269\-Xint
270Operate in interpreted\-only mode. Compilation to native code is disabled, and all bytecodes are executed by the interpreter. The performance benefits offered by the Java HotSpot VMs' adaptive compiler will not be present in this mode.
271.TP 3
272\-Xbatch
273Disable background compilation. Normally the VM will compile the method as a background task, running the method in interpreter mode until the background compilation is finished. The \f2\-Xbatch\fP flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed.
274.TP 3
275\-Xbootclasspath:bootclasspath
276Specify a colon\-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 Java 2 SDK. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.\fP
277.TP 3
278\-Xbootclasspath/a:path
279Specify a colon\-separated path of directires, JAR archives, and ZIP archives to append to the default bootstrap class path.
280.TP 3
281\-Xbootclasspath/p:path
282Specify a colon\-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.\fP
283.TP 3
284\-Xcheck:jni
285Perform additional checks for Java Native Interface (JNI) functions. Specifically, the Java Virtual Machine validates the parameters passed to the JNI function as well as the runtime environment data before processing the JNI request. Any invalid data encountered indicates a problem in the native code, and the Java Virtual Machine will terminate with a fatal error in such cases. Expect a performance degradation when this option is used.
286.TP 3
287\-Xfuture
288Perform strict class\-file format checks. For purposes of backwards compatibility, the default format checks performed by the Java 2 SDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The \f3\-Xfuture\fP flag turns on stricter class\-file format checks that enforce closer conformance to the class\-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
289.TP 3
290\-Xnoclassgc
291Disable class garbage collection. Use of this option will prevent memory recovery from loaded classes thus increasing overall memory usage. This could cause OutOfMemoryError to be thrown in some applications.
292.TP 3
293\-Xincgc
294Enable the incremental garbage collector. The incremental garbage collector, which is off by default, will reduce the occasional long garbage\-collection pauses during program execution. The incremental garbage collector will at times execute concurrently with the program and during such times will reduce the processor capacity available to the program.
295.TP 3
296\-Xloggc:file
297Report on each garbage collection event, as with \-verbose:gc, but log this data to \f2file\fP. In addition to the information \f2\-verbose:gc\fP gives, each reported event will be preceeded by the time (in seconds) since the first garbage\-collection event.
298.LP
299Always use a local file system for storage of this file to avoid stalling the JVM due to network latency. The file may be truncated in the case of a full file system and logging will continue on the truncated file. This option overrides \f2\-verbose:gc\fP if both are given on the command line.
300.LP
301.TP 3
302\-Xmsn
303Specify the initial size, in bytes, of the memory allocation pool. This value must be a multiple of 1024 greater than 1MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see HotSpot Ergonomics
304.br
305Examples:
306.RS 3
307
308.LP
309.nf
310\f3
311.fl
312 \-Xms6291456
313.fl
314 \-Xms6144k
315.fl
316 \-Xms6m
317.fl
318
319.fl
320\fP
321.fi
322.RE
323.TP 3
324\-Xmxn
325Specify the maximum size, in bytes, of the memory allocation pool. This value must a multiple of 1024 greater than 2MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see HotSpot Ergonomics
326.br
327Examples:
328.RS 3
329
330.LP
331.nf
332\f3
333.fl
334 \-Xmx83886080
335.fl
336 \-Xmx81920k
337.fl
338 \-Xmx80m
339.fl
340
341.fl
342\fP
343.fi
344.RE
345On Solaris 7 and Solaris 8 SPARC platforms, the upper limit for this value is approximately 4000m minus overhead amounts. On Solaris 2.6 and x86 platforms, the upper limit is approximately 2000m minus overhead amounts. On Linux platforms, the upper limit is approximately 2000m minus overhead amounts.
346.TP 3
347\-Xprof
348Profiles the running program, and sends profiling data to standard output. This option is provided as a utility that is useful in program development and is not intended to be be used in production systems.
349.LP
350.TP 3
351\-Xrs
352Reduces use of operating\-system signals by the Java virtual machine (JVM).
353.LP
354In a previous release, the Shutdown Hooks facility was added to allow orderly shutdown of a Java application. The intent was to allow user cleanup code (such as closing database connections) to run at shutdown, even if the JVM terminates abruptly.
355.LP
356Sun's JVM catches signals to implement shutdown hooks for abnormal JVM termination. The JVM uses SIGHUP, SIGINT, and SIGTERM to initiate the running of shutdown hooks.
357.LP
358The JVM uses a similar mechanism to implement the pre\-1.2 feature of dumping thread stacks for debugging purposes. Sun's JVM uses SIGQUIT to perform thread dumps.
359.LP
360Applications embedding the JVM frequently need to trap signals like SIGINT or SIGTERM, which can lead to interference with the JVM's own signal handlers. The \f3\-Xrs\fP command\-line option is available to address this issue. When \f3\-Xrs\fP is used on Sun's JVM, the signal masks for SIGINT, SIGTERM, SIGHUP, and SIGQUIT are not changed by the JVM, and signal handlers for these signals are not installed.
361.LP
362There are two consequences of specifying \f3\-Xrs\fP:
363.RS 3
364.TP 2
365o
366SIGQUIT thread dumps are not available.
367.TP 2
368o
369User code is responsible for causing shutdown hooks to run, for example by calling System.exit() when the JVM is to be terminated.
370.RE
371.TP 3
372\-Xssn
373Set thread stack size.
374.TP 3
375\-XX:+UseAltSigs
376The VM uses \f2SIGUSR1\fP and \f2SIGUSR2\fP by default, which can sometimes conflict with applications that signal\-chain \f2SIGUSR1\fP and \f2SIGUSR2\fP. The \f2\-XX:+UseAltSigs\fP option will cause the VM to use signals other than \f2SIGUSR1\fP and \f2SIGUSR2\fP as the default.
377.RE
378
379.LP
380.RE
381.SH "NOTES"
382.LP
383
384.LP
385The \f3\-version:\fP\f2release\fP command line option places no restrictions on the complexity of the release specification. However, only a restricted subset of the possible release specifications represent sound policy and only these are fully supported. These policies are:
386.RS 3
387.TP 3
3881.
389Any version, represented by not using this option.
390.TP 3
3912.
392Any version greater than an arbitrarily precise version\-id. For example:
393.nf
394\f3
395.fl
396"1.5.0_03+"
397.fl
398\fP
399.fi
400.LP
401Would utilize any version greater than 1.5.0_03. This is useful for a case where an interface was introduced (or a bug fixed) in the release specified.
402.TP 3
4033.
404A version greater than an arbitrarily precise version\-id, bounded by the upper bound of that release family. For example:
405.nf
406\f3
407.fl
408"1.5.0_03+&1.5*"
409.fl
410\fP
411.fi
412.TP 3
4134.
414"Or" expressions of items 2. or 3. above. For example:
415.nf
416\f3
417.fl
418"1.4.2_05+&1.4* 1.5+"
419.fl
420\fP
421.fi
422Similar to item 2. this is useful when a change was introduced in a release (1.5) but also made available in updates to previous releases.
423.RE
424
425.LP
426.SH "SEE ALSO"
427.LP
428
429.LP
430.RS 3
431.TP 2
432o
433javac \- the Java programming language compiler
434.TP 2
435o
436jdb \- Java Application Debugger
437.TP 2
438o
439javah \- C Header and Stub File Generator
440.TP 2
441o
442jar \- JAR Archive Tool
443.TP 2
444o
445The Java Extensions Framework
446.TP 2
447o
448Security Features.
449.TP 2
450o
451.na
452\f2HotSpot VM Specific Options\fP @
453.fi
454http://java.sun.com/docs/hotspot/VMOptions.html.
455.RE
456
457.LP
458
459.LP
460