up vote 0 down vote favorite
share [g+] share [fb]

In the Eclipse console, I'm getting an error that JAVA HOME is not set.

I went ahead and set it to .;C:\Program Files\Java\jre1.6.0_02\ in system variables Then I restarted eclipse, but I keep getting the same error.

What am I doing wrong?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Remove the period and semicolon from the beginning, like this:

C:\Program Files\Java\jre1.6.0_02\

This is just one specific directory, not a semicolon-separated list like the system PATH variable.

Also, make sure the environment variable you create is called JAVA_HOME with an underscore between JAVA and HOME. You seem to have JAVA HOME with a space between them.

link|improve this answer
Removing the period semicolon at the start did it. Thank you. – Kamo Jul 24 '10 at 0:48
feedback

You have to set the jre inside the eclipse.

Go to Window -> Preferences

Java -> installed JREs

link|improve this answer
Under installed JREs, I can already see it there, so I guess it's already been added for me, unless there are some specific additional setups I need to do. – Kamo Jul 24 '10 at 0:19
feedback

Create JAVA_HOME environment variable points to your JDK directory, don't put it into PATH variable.

link|improve this answer
but I don't have a JDK directory. My ProgramFiles/Java directory only contains the jre1.6.0_02 – Kamo Jul 24 '10 at 0:39
Ah, you can point jre1.6.0_02 too. – Duy Do Jul 24 '10 at 0:43
feedback

Your Answer

 
or
required, but never shown

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