When running ant, I get the following message:

Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib\tools.jar

I have JAVA_HOME set to C:\Program Files\Java\jdk1.7.0_02, PATH includes C:\Program Files (x86)\Java\jdk1.7.0_02\bin, CLASSPATH includes C:\Program Files (x86)\Java\jdk1.7.0_02, and ANT_HOME is set to C:\ant.

It seems that ant is ignoring all of these settings and looking for the tools.jar somewhere else. There are no environment variables which point to the jre6 path. Any ideas why?

link|improve this question
are you sure there are no classpath settings in ant folder? – thinksteep Feb 2 at 20:30
Not that I can tell, but I might be missing something. What would I be looking for to find that? – john Feb 2 at 20:33
feedback

3 Answers

  1. Try to check it once more according to this tutorial: http://vietpad.sourceforge.net/javaonwindows.html

  2. Try to reboot your system.

  3. If nothing, try to run "cmd" and type there "java", does it print anything?

link|improve this answer
It might be good to give a reflection on my answer. What have you tried? – Ondrej Kvasnovsky Feb 4 at 19:05
I tried all of those, with no success – john Feb 16 at 20:59
feedback

There are two directories that looks like JDK.

  C:\Program Files\Java\jdk1.7.0_02
  C:\Program Files (x86)\Java\jdk1.7.0_02\

This may be due to both 64 bit and 32 bit JDK installed? What ever may be the case, the java.exe seen by ant.bat should from the JDK. If the JRE's java.exe comes first in the path, that will be used to guess the JDK location.

Put 'C:\Program Files (x86)\Java\jdk1.7.0_02\bin' or 'C:\Program Files\Java\jdk1.7.0_02' as the first argument in the path.

Further steps:

You can take output of "ant -diaganostic" and look for interesting keys. (assuming Sun/Oracle JDK). Not sure if this command works with current error.

 java.class.path 
 java.library.path
 sun.boot.library.path

(in my case tools.jar appears in java.class.path)

link|improve this answer
Thanks for the -diagnostics tip. This shows that the java.home system property is pointing to the 1.6 JRE, despite all the environment variables pointing to 1.7. Doesn't fix the problem, but it's a starting point for further investigation. – john Feb 16 at 21:05
ant expects 'JDK'. The java.exe from a JDK must be appear first. See comment from Mads Hansen – Jayan Feb 17 at 7:53
feedback

The order of items in the PATH matters. If there are multiple entries for various java installations, the first one in your PATH will be used.

I have had similar issues after installing a product, like Oracle, that puts it's JRE at the beginning of the PATH.

Ensure that the JDK you want to be loaded is the first entry in your PATH (or at least that it appears before C:\Program Files\Java\jre6\bin appears).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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