Enumeration enum = System.getProperties().propertyNames(); while (enum.hasMoreElements()) { String name = (String)enum.nextElement(); System.out.println(name + " = " + System.getProperty(name)); }