Get Java Home directory in Java
Description
The following code shows how to get Java Home directory.
Example
//from w w w .jav a 2s. c o m
public class Main {
public static void main(String[] args) {
String javaHome = System.getProperty("java.home");
System.out.println("javaHome = " + javaHome);
}
}
The code above generates the following result.