Answers for "check java_home in windows"

3

how to echo java_home in windows cmd

echo %JAVA_HOME%
Posted by: Guest on May-20-2020
0

find java_home path in cmd

Verify JAVA_HOME
Open a Command Prompt window (Win⊞ + R, type cmd, hit Enter).
Enter the command echo %JAVA_HOME% . This should output the path to your Java installation folder. If it doesn't, your JAVA_HOME variable was not set correctly.
Posted by: Guest on June-09-2021
0

finda java home

dirname $(dirname $(readlink -f $(which javac)))
Posted by: Guest on July-10-2020
0

find where JAVA_HOME is set

grep JAVA_HOME /etc/environment /etc/bash.bashrc /etc/profile.d/* /etc/profile
Posted by: Guest on February-04-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language