1. Introduction
In this quick tutorial, we’ll learn how to find JAVA_HOME on Windows, Mac, and Linux.
As we all know, JAVA_HOME is an environment variable that we commonly use to locate java executables, like java and javac.
2. Windows-Specific Ways to Find JAVA_HOME
If we’re using Windows as the operating system, first we need to open up our command line (cmd) and type:
echo %JAVA_HOME%
If JAVA_HOME is defined in our environment, then the above command will print it out.
Or to show the location of the java executable, we can try:
where java
3. macOS and Linux-Specific Ways to Find JAVA_HOME
If we’re using either macOS or Linux, we can open up our terminal and type:
echo $JAVA_HOME
If JAVA_HOME is defined in our environment, then the above command will print it out.
Or we could try:
which java
This probably just shows us /usr/bin/java, which really isn’t very helpful since it’s a symbolic link. To unravel this, we’ll use dirname and readlink.
For Linux:
dirname $(dirname $(readlink -f $(which javac)))
For macOS:
$(dirname $(readlink $(which javac)))/java_home
This command prints the currently used java folder.
4. Using Java to Find JAVA_HOME
If we’re able to run java ourselves, then we have a nearly platform-independent way as well:
java -XshowSettings:properties -version
Running this command outputs numerous properties, one of them being java.home.
To parse it though, we’ll still need a platform-specific tool.
For Linux and macOS*,* we’ll use grep:
java -XshowSettings:properties -version 2>&1 > /dev/null | grep 'java.home'
For Windows, we’ll use findstr:
java -XshowSettings:properties -version 2>&1 | findstr "java.home"
5. Conclusion
In this brief article, we learned how to find JAVA_HOME on different operating systems.
If this didn’t work though, it’s possible we didn’t set the JAVA_HOME variable properly while installing Java.