Mega Code Archive

 
Categories / Java / Development Class
 

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"));       } }