Get Java Home directory : System Properties « Development Class « Java
- Java
- Development Class
- System Properties
Get Java Home directory
public class Main {
public static void main(String[] args) {
String javaHome = System.getProperty("java.home");
System.out.println("javaHome = " + javaHome);
}
}
Related examples in the same category