// Auflistung aller System-Properties Properties props = System.getProperties(); Enumeration enum = props.keys(); while (enum.hasMoreElements()) { String key = (String)enum.nextElement(); System.out.println(key + " = " + System.getProperty(key)); }