Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For almost all of you this might be too trivial a question, but I am facing some issues with my JDK installation and need your help.

I need to know where JDK is located on my machine.

On running 'Java -version' in cmd it shows the version as '1.6.xx'. To find the location of this SDK on my machine I tried using echo %JAVA_HOME% but it is only showing 'JAVA_HOME' (as there is no 'JAVA_PATH' var set in my environment variables).

Any help in this regard would be greatly appreciated.

share|improve this question
   
I think you need to clarify which OS you're on. The answer is OS dependent. – sblundy Jan 13 '11 at 14:31
It is not. See my answer. – PeterMmm Jan 13 '11 at 14:33
And my answer;) – RoflcoptrException Jan 13 '11 at 14:38

9 Answers

up vote 28 down vote accepted

If you are using Linux/Unix/Mac OS X:

Try this:

$ which java

Should output the exact location.

After that, you can set JAVA_HOME environment variable yourself.

In my computer (Mac OS X - Snow Leopard):

$ which java
/usr/bin/java
$ ls -l /usr/bin/java
lrwxr-xr-x  1 root  wheel  74 Nov  7 07:59 /usr/bin/java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java

If you are using Windows:

c:\> for %i in (java.exe) do @echo.   %~$PATH:i
share|improve this answer
Actually, the form %VAR_NAME% is Windows – sblundy Jan 13 '11 at 14:29
@sblundy: 100% true. Don't know what I was thinking... – Pablo Santa Cruz Jan 13 '11 at 14:30
Updated the answer with Linux/Unix/Mac OS X and Windows examples. – Pablo Santa Cruz Jan 13 '11 at 14:32
11  
where java works in Windows (at least as of Windows 7) But if you really want a JDK and not a JRE you need to look in the returned directories for 'bin/javac/ – Jon Strayer Oct 21 '11 at 18:42

Windows > Start > cmd >

C:> for %i in (javac.exe) do @echo.   %~$PATH:i

If you have a JDK installed, the Path is displayed,
for example: C:\Program Files\Java\jdk1.6.0_30\bin\javac.exe

share|improve this answer
Wish I could +5 this one. Thanks! – Ben Jakuben Jun 18 '12 at 21:23

Java installer puts several files into %WinDir%\System32 folder (java.exe, javaws.exe and some others). When you type java.exe in command line or create process without full path, Windows runs these as last resort if they are missing in %PATH% folders.

You can lookup all versions of Java installed in registry. Take a look at HKLM\SOFTWARE\JavaSoft\Java Runtime Environment and HKLM\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment for 32-bit java on 64 bit Windows.

This is how java itself finds out different versions installed. And this is why both 32-bit and 64-bit version can co-exist and works fine without interfering.

share|improve this answer

More on Windows... variable java.home is not always the same location as the binary that is run.

As Denis The Menace says, the installer puts Java files into Program Files, but also java.exe into System32. With nothing Java related on the path java -version can still work. However when PeterMmm's program is run it reports the value of Program Files as java.home, this is not wrong (Java is installed there) but the actual binary being run is located in System32.

One way to hunt down the location of the java.exe binary, add the following line to PeterMmm's code to keep the program running a while longer:

try{Thread.sleep(60000);}catch(Exception e) {}

Compile and run it, then hunt down the location of the java.exe image. E.g. in Windows 7 open the task manager, find the java.exe entry, right click and select 'open file location', this opens the exact location of the Java binary. In this case it would be System32.

share|improve this answer

Run this program from commandline:

// File: Main.java
public class Main {

    public static void main(String[] args) {
       System.out.println(System.getProperty("java.home"));
    }

}


$ javac Main.java
$ java Main
share|improve this answer
wouldn't she have to compile this first? – Irwin Jan 13 '11 at 14:40
1  
That will find a JRE if it is installed and on the path first. – Jon Strayer Oct 6 '11 at 14:09

Have you tried looking at your %PATH% variable. That's what Windows uses to find any executable.

share|improve this answer
Yep. Echo %PATH%. Mine seems to be in c:\Program Files\Java on Windows 7 – MarkoPolo May 14 at 20:08

This is OS specific. On Unix:

which java

will display the path to the executable. I don't know of a Windows equivalent, but there you typically have the bin folder of the JDK installation in the system PATH:

echo %PATH%
share|improve this answer
I was gonna give that answer, too, but he's clearly looking for a windows answer. – Don Branson Jan 13 '11 at 14:47

Just execute the set command in your command line. Then you see all the environments variables you have set.

Or if on Unix you can simplify it:

$ set | grep "JAVA_HOME" 
share|improve this answer
'set' should work for unix and windows – anon Jan 13 '11 at 14:33
Thanks Roflcoptr, it was indeed useful to learn about 'set'. In my system its is showing two entries for same variable, how can I delete the incorrect one. – Ashine Jan 13 '11 at 16:20

I found it at c:\Sun\SDK\jdk.. Or just try to search for jdk*

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.