Returns the input arguments passed to the Java virtual machine
which does not include the arguments to the
main method.
This method returns an empty list if there is no input argument
to the Java virtual machine.
Some Java virtual machine implementations may take input arguments
from multiple different sources: for examples, arguments passed from
the application that launches the Java virtual machine such as
the 'java' command, environment variables, configuration files, etc.
Typically, not all command-line options to the 'java' command
are passed to the Java virtual machine.
Thus, the returned input arguments may not
include all command-line options.
MBeanServer access:
The mapped type of List is String[].
Returns:
a list of String objects; each element
is an argument passed to the Java virtual machine.
Throws:
- java.lang.SecurityException - if a security manager exists and the caller does not have
ManagementPermission("monitor").