Java I/O How to - Get Java Home directory








Question

We would like to know how to get Java Home directory.

Answer


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.