blob: ff164c5a42d81d6ee048e0cff0da9355bf254505 [file] [log] [blame]
System.getProperty("path.separator");
System.getProperty("file.separator");
System.getProperty("line.separator");
void dumpAllProperties() {
java.util.Enumeration enumeration = System.getProperties().keys();
String key = null;
while (enumeration.hasMoreElements()) {
key = (String) enumeration.nextElement();
System.out.print(key);
for (int i = 0; i < (30 - key.length()); i++)
System.out.print(" ");
System.out.println("->" + System.getProperty(key));
}
}