To get Java Home directory we can obtain it from system properties using the java.home
key.
package org.kodejava.lang;
public class JavaHomeDirectory {
public static void main(String[] args) {
String javaHome = System.getProperty("java.home");
System.out.println("JAVA HOME = " + javaHome);
}
}
On my computer this code give me the following output:
JAVA HOME = C:\Program Files\Java\jdk-17
Latest posts by Wayan (see all)
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023