I am Ph.D. student in Computer Science at King Abdullah University of Science & Technology (KAUST).
You can use the following code snippet to obtain a list of all system properties:
Enumeration list = System.getProperties().propertyNames(); while(list.hasMoreElements()){ System.out.println((String) list.nextElement()); }
Post a Comment
No comments:
Post a Comment