java - the Java application launcher
java
[ options ] class [ argument ... ]
java
[ options ] -jar
file.jar [ 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.
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. The
method declaration must look like the following:
public static void main(String args[])
The method must be declared public and static, it must not
return any value, and it must accept a String array as a
parameter. 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.
The 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
options that
are subject to change in future releases.
-client
Select the Java HotSpot Client VM. This is the default.
-server
Select the Java HotSpot Server VM.
-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 colons (:
). Specifying
-classpath
or -cp
overrides any setting of the
CLASSPATH
environment variable.
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
.
-D
property
=
value
Set a system property value.
-jar
Execute 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
Main-Class: classname
.
Here, classname
identifies the class having the
public static void main(String[] args)
method that serves as your application's starting point. See
the Jar tool reference page
and
the Jar trail of the
Java
Tutorial
for information about working with Jar files and
Jar-file manifests.
When you use this option, the
JAR file is the source of all user classes, and other user class
path settings are ignored.
On Solaris 8
, 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".
-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.
-showversion
Display version information and continue.
-?
-help
Display usage information and exit.
-X
Display information about non-standard options and exit.
-Xint
Operate 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.
-Xdebug
Start with the debugger enabled. Refer to
jdb description
for more
details and an example.
-Xbootclasspath:
bootclasspath
Specify 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. Note: 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.
-Xbootclasspath/a:
path
Specify a colon-separated path of directires, JAR
archives, and ZIP archives to append to the default bootstrap
class path.
-Xbootclasspath/p:
path
Specify a colon-separated path of directires, JAR
archives, and ZIP archives to prepend in front of the default
bootstrap class path. Note: 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.
-Xfuture
Perform 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
-Xfuture
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.
-Xnoclassgc
Disable class garbage collection.
-Xincgc
Enable the incremental garbage collector. The incremental
garbage collector, which is off by default, will eliminate
occasional garbage-collection pauses during program execution.
However, it can lead to a roughly 10% decrease in overall
GC performance.
-Xmsn
Specify the initial size, in bytes, of the memory allocation pool.
This value must be
a multiple of 1024 greater than 1MB. Append the
letter k
or K
to indicate kilobytes, or m
or M
to indicate megabytes. The default value is 2MB.
Examples:
-Xms6291456
-Xms6144k
-Xms6m
-Xmxn
Specify the maximum size, in bytes, of the memory allocation pool.
This value must a multiple of 1024 greater than 2MB. Append the letter
k
or K
to indicate kilobytes, or m
or
M
to indicate megabytes. The default value is 64MB.
The upper limit for this value will be approximately 4000m
on Solaris 7 and Solaris 8 SPARC platforms and 2000m on Solaris 2.6
and x86 platforms, minus overhead amounts. Examples:
-Xmx83886080
-Xmx81920k
-Xmx80m
-Xssn
Set thread stack size. Each Java thread has two stacks: one for
Java code and one for C code. This
option sets the maximum stack size that
can be used by C code in a thread to n
.
Every thread that is spawned during the
execution of the program passed to java
has n
as its C stack size. The default
units for n
are bytes and n
must
be > 1000 bytes.
To modify the meaning of n
, append
either the letter k
for kilobytes or the
letter m
for megabytes. The default
stack size is 512 kilobytes (-Xss512k
).
-Xprof
Profiles 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.
-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
Reduces use of operating-system signals by the Java virtual
machine (JVM). This option is available beginning with J2SE 1.3.1.
In J2SE 1.3.0, 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.
Sun'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.
The 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.
Applications embedding the JVM frequently need to
trap signals like SIGINT or SIGTERM, which can lead to interference
with the JVM's own signal handlers. To address this issue, the
-Xrs
command-line option has been added
beginning in J2SE 1.3.1. When -Xrs
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.
There are two consequences of specifying -Xrs
:
- SIGQUIT thread dumps are not available.
- User code is responsible for causing shutdown hooks to run, for
example by calling System.exit() when the JVM is to be terminated.
WARNING:
Flags -Xdebug
and -Xint
are mutually exclusive. No more than one of
those options should be used on a java
command line.
分享到:
相关推荐
Tools: You will learn how to use the JDK''s javac (compiler), java (application launcher), javadoc (Java documentation generator), and jar (Java archive creator, updater, and extractor) tools....
5. **Java Application Launcher (java)**: 这个命令行工具用于启动Java应用程序,通过解析并加载`.class`文件来执行程序。 6. **增强功能**: JDK 1.8引入了一些重要特性,如Lambda表达式、函数式编程、Stream API...
- 当启动Eclipse时,可能会遇到"Failed to create the Java Virtual Machine"的错误。解决这个问题,你需要编辑Eclipse安装目录下的`eclipse.ini`文件。找到`-XXMaxPermSize`参数,将其值改为128M(如`-launcher....
10.1. Installation Instructions for the Java Developer 10.1.1. Maven Installation 10.1.2. Gradle Installation 10.2. Installing the Spring Boot CLI 10.2.1. Manual Installation 10.2.2. Installation with...
关于 executable jar,Spring Boot 官方文档中是这样解释的:Executable jars (sometimes called “fat jars”) are archives containing your compiled classes along with all of the jar dependencies that your ...
此存储库包含 The Essentials of Android Application Development LiveLessons, 2nd Edition 中的代码示例。 该视频系列可在。 大多数文件与您在视频系列中看到的相同,但有一些更改。 gradle 版本已更新到 2015-...
The number that the framework is named during install corresponds to the pkgId of the application. These values should range from 1 to 9. Any APK that installs itself as 127 is 0x7F which is an ...
/** Called when the activity is first created. */ private MapView mpv; private MapController mpc; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate...
■CHAPTER 12 Updating a NetBeans Platform Application . . . . . . . . . . . . . . . . . . . . 219 ■CHAPTER 13 Persistence. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...
23.zip Application Launcher 程序发射器, 能够在Word, Excel, Access, Power Point, Visio和Html中连接网站(6KB)<END><br>24,24.zip Open current header file 打开当前文件头(7KB)<END><br>25,25.zip...
android:text="This text will use the custom font" /> ``` 通过以上步骤,你已经学会了如何在Android应用中使用`Font`和`style`定义全局字体样式。这种方式不仅使代码更整洁,而且方便在不修改大量代码的情况下...
PEP 486: Make the Python Launcher aware of virtual environments PEP 488: Elimination of PYO files PEP 489: Multi-phase extension module initialization Other Language Changes New Modules typing ...
声明快捷方式通常是在 `<application>` 标签内添加 `<shortcut>` 子标签。每个 `<shortcut>` 标签需要指定一个唯一ID,以及对应的意图(Intent),这将定义快捷方式点击后执行的操作。 例如: ```xml android:...
.setContentText("Running in the foreground.") .setSmallIcon(R.drawable.ic_notification) .build(); startForeground(1, notification); // 启动前台Service return START_STICKY; } } ``` 2. **使用...
// Restart all activities to apply the new theme Intent restartIntent = new Intent(context, MainActivity.class); restartIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_...
The sections below describe the system and software requirements for developing Android applications using the Android SDK tools included in Android 1.1 SDK, Release 1. Supported Supported Supported ...
第一步,设置通用配置(General settings),包括应用程序信息(Application info)、Java版本(Java version)、支持的语言(Languages)、媒体文件选项(Media file options)、代码签名(Codesigning)和编译器...
在这个项目中,我们将深入探讨如何使用Java语言构建一个简单的Android应用。 首先,我们需要设置开发环境。安装Android Studio是必不可少的,它是Google官方提供的集成开发环境(IDE),集成了代码编辑器、调试工具...