|
How do I find the list of all system properties |
|
|
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());
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.