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); } }
No refactoring yet !
Name
Email
Website
Comment
Format Copy from initial code Code
Notify me of new refactorings by email
Get all the properties stored into the System class and show it.