2015-09-07 11:44:36 -06:00
|
|
|
|
// objects/ShowProperties.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
2015-06-15 17:47:35 -07:00
|
|
|
|
|
|
|
|
|
public class ShowProperties {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
System.getProperties().list(System.out);
|
|
|
|
|
System.out.println(System.getProperty("user.name"));
|
|
|
|
|
System.out.println(
|
|
|
|
|
System.getProperty("java.library.path"));
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output: (First 20 Lines)
|
2015-06-15 17:47:35 -07:00
|
|
|
|
-- listing properties --
|
|
|
|
|
java.runtime.name=Java(TM) SE Runtime Environment
|
|
|
|
|
sun.boot.library.path=C:\Program Files
|
|
|
|
|
(x86)\Java\jre1.8.0_...
|
2015-11-03 12:00:44 -08:00
|
|
|
|
java.vm.version=25.60-b23
|
2015-06-15 17:47:35 -07:00
|
|
|
|
java.vm.vendor=Oracle Corporation
|
|
|
|
|
java.vendor.url=http://java.oracle.com/
|
|
|
|
|
path.separator=;
|
|
|
|
|
java.vm.name=Java HotSpot(TM) Client VM
|
|
|
|
|
file.encoding.pkg=sun.io
|
|
|
|
|
user.script=
|
|
|
|
|
user.country=US
|
|
|
|
|
sun.java.launcher=SUN_STANDARD
|
|
|
|
|
sun.os.patch.level=
|
|
|
|
|
java.vm.specification.name=Java Virtual Machine
|
|
|
|
|
Specification
|
2015-11-03 12:00:44 -08:00
|
|
|
|
user.dir=C:\Users\Bruce\Documents\GitHub\OnJav...
|
|
|
|
|
java.runtime.version=1.8.0_60-b27
|
2015-06-15 17:47:35 -07:00
|
|
|
|
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
|
|
|
|
|
java.endorsed.dirs=C:\Program Files (x86)\Java\jre1.8.0_...
|
|
|
|
|
os.arch=x86
|
|
|
|
|
java.io.tmpdir=C:\Users\Bruce\AppData\Local\Temp\
|
|
|
|
|
...
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|