You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
793 B
35 lines
793 B
/* |
|
* 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)); |
|
} |
|
} |
|
|
|
|
|
}
|
|
|