/* * Created on 15.09.2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package de.superx.bin; import java.util.Enumeration; import java.util.Properties; /** * @author Daniel Quathamer Projektgruppe SuperX * ShowEnv.java * @ * Dieses Javaprogramm ... * * * * */ public class ShowEnv { public static void main(String[] args) { Properties sysprops = System.getProperties(); Enumeration propnames = sysprops.propertyNames(); System.out.println("SuperX @version@\n"); while (propnames.hasMoreElements()) { String propname = (String) propnames.nextElement(); System.out.println(propname + "=" + System.getProperty(propname)); } } }