077b12f1039dceb830c2b83be8dcbd1b

Get all the properties stored into the System class and show it.

1
2
3
4
5
6
7
8
9
public class SystemInfo {

	public static void main(String[] args) {
		
		java.util.Properties properties = System.getProperties();
		properties.list(System.out);
		
	}
}

Refactorings

No refactoring yet !

Your refactoring





Format Copy from initial code

or Cancel