Java tutorial
public class Main { public static void main(String[] args) { // prints the name of the system property System.out.println(System.getProperty("user.dir")); // prints the name of the Operating System System.out.println(System.getProperty("os.name")); // prints Java Runtime Version System.out.println(System.getProperty("java.runtime.version")); } }