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

I went to the Environment Variables in 'System' in the control panel and made 2 new variables. one for user variables and one for system variables, both named JAVA_HOME and both pointing to

C:\Sun\SDK\jdk\bin

but for some reason, I still get the below error when running a java command...

BUILD FAILED
C:\Users\Derek\Desktop\eclipse\eclipse\glassfish\setup.xml:161: The following error  occurred while executing this line:
C:\Users\Derek\Desktop\eclipse\eclipse\glassfish\setup.xml:141: The following error occurred while executing this line:
C:\Users\Derek\Desktop\eclipse\eclipse\glassfish\setup.xml:137: Please set java.home to a JDK installation

Total time: 1 second
C:\Users\Derek\Desktop\eclipse\eclipse\glassfish>lib\ant\bin\ant -f setup.xml
Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib\tools.jar
Buildfile: setup.xml
share|improve this question
73  
Derek, can you be a good citizen and accept some answers ? If not people will not bother answering your questions. – Romain Hippeau May 4 '10 at 3:25

8 Answers

Find JDK Installation Directory

First you need to know the installation path for the Java Development Kit.

Open the default installation path for the Java Development Kit

C:\Program Files\Java

There should be a subdirectory like

C:\Program Files\Java\jre6

Set the JAVA_HOME Variable

Once you have the JDK installation path:

  1. Right-click the My Computer icon on
  2. your desktop and select Properties.
  3. Click the Advanced tab. Click the
  4. Environment Variables button. Under System Variables, click New.
  5. Enter the variable name as JAVA_HOME.
  6. Enter the variable value as the installation path for the Java Development Kit.
  7. Click OK.
  8. Click Apply Changes.

You might need to restart windows.

The complete article is here, on my blog: Setting JAVA_HOME Variable in Windows

share|improve this answer
9  
thanks. finally I realized that one has only to put the path to the jdk without /bin in the end (as suggested on alot of places). e.g. C:\Java\jdk1.6.0_31 and NOT C:\Java\jdk1.6.0_31\bin ! – salocinx Mar 20 '12 at 22:24
6  
God forbid there was an installer that did this step for you :) I just switched from the Enterprise version to the Community version and I was convinced I downloaded the wrong thing because it was one-click on the Enterprise version :p – w00te Apr 26 '12 at 18:25

What worked for me was adding the %JAVA_HOME%\bin to Path environment variable with the JAVA_HOME environment variable pointing to the jdk folder

share|improve this answer
5  
+1 adding %JAVA_HOME%\bin to bath fixed my issue, and here I thought 'JAVA_HOME' would be enough on windows 7 – Jakub Nov 29 '10 at 16:38
Awesome, Thanks a ton. And yes, this is the correct answer - @Lucifer. – Anand S Feb 19 '12 at 16:59
Lucifer's comment about how to find the JAVA_HOME system variable, and YOUR comment about how to set the path, should solve this problem for everybody. – David Is Not Here Aug 31 '12 at 14:14

You need to set it to C:\Sun\SDK\jdk (Assuming that is where the JDK is installed - It is not the default) - Do not put the \bin in C:\Sun\SDK\jdk\bin. If your app only runs when you are logged in as the current user then put it in the user variables - If it needs to run for all users on your system then put it in System variables.

You might also need to add %JAVA_HOME%\bin to the path also (Also it depends on whether you run it from just the user or from all users, including System)

share|improve this answer

This is official solution for set java environment from www.java.com Here

There are solution for Win7, Vista, XP, Linux/Solaris and other shell.


Example.

Windows 7

  1. Select Computer from the Start menu
  2. Choose System Properties from the context menu
  3. Click Advanced system settings > Advanced tab
  4. Click on Environment Variables, under System Variables, find PATH, and click on it.
  5. In the Edit windows, modify PATH by adding the location of the class to the value for PATH.If you do not have the item PATH, you may select to add a new variable and add PATH as the name and the location of the class as the value.
  6. Reopen Command prompt window, and run your java code.
share|improve this answer

run eclipse as Administrator.

that solved my problem. I`m still digging for the logic behind it.

share|improve this answer
1  
I can't say I understand this exactly, but maybe eclipse is actually just giving the wrong error message here. When you run it as a non-admin, it can't delete the .jar files or something and then falsely reports that it didn't find javac. Anyway, this solution worked for me too. – Jess Jun 15 '11 at 23:02

In Eclipse: Window->Preferences->Java->Installed JREs

Use the search feature to make sure your latest Java installation is listed; then make sure it is the one that is checked. This should be a JDK not a JRE.

share|improve this answer

You closed cmd and reopened it? Also it looks like you are pointed to the JRE not the JDK. Have you installed the JDK?

share|improve this answer
I have definitely installed the JDK and it's located in C:\Sun\SDK\jdk\bin which I have set java_home to. – Derek Apr 12 '10 at 2:43
I've even restarted.........a few times since........ – Derek Apr 12 '10 at 2:44
Still it seems to be looking in C:\Program Files\Java\jre6\lib\ c Can you do echo %JAVA_HOME% in your command prompt and see what it reports – anger Apr 12 '10 at 2:46
in my command prompt, when I ran echo %JAVA_HOME%, it returned: C:\Users\Derek\Desktop\eclipse\eclipse\glassfish>echo %JAVA_HOME% C:\Sun\SDK\jdk\bin – Derek Apr 12 '10 at 2:59
In what context are you running cmd.exe? – anger Apr 12 '10 at 3:13

http://javahowto.blogspot.com/2006/05/javahome-vs-javahome.html

Control Panel > Java, Java tab, click the View button. In Runtime Parameters, put:

-Djava.home=YOUR_PATH_HERE

Or when you execute Java you can add that command line switch to the command:

java -Djava.home=PATH SomeJavaApp
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.