Mega Code Archive
Dealing with the Java environment
public class GetVersion {
public static void main(String[] args) {
System.out.println(System.getProperty("java.specification.version"));
System.out.println("System.getenv(\"PATH\") = " + System.getenv("PATH"));
}
}