Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 6447b4e26acb4e403e278c8b7fd60b600483f9b9 (plain) (blame)
1


java.util.Enumeration enum =  System.getProperties().keys();
String key = null;
while (enum.hasMoreElements()){
        key = (String)enum.nextElement();
        System.out.print(key);
        for (int i =0;i<(30-key.length());i++)System.out.print(" ");
        System.out.println("->"+System.getProperty(key));
}

Back to the top