Get the Default System Properties in Java
Description
The following code shows how to get the Default System Properties.
Example
// www .j a v a2 s . c o m
public class Main {
public static void main(String[] args) {
java.util.Properties properties = System.getProperties();
properties.list(System.out);
}
}
The code above generates the following result.