Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have downloaded JDK 7 and Eclipse Helios, but when I open Eclipse, I get the following error

A java Runtime Environment (JRE) or Java Development kit (JDK) must be available in order 

to run Eclipse. No Java virtual machine was found after searching the following locations:

 C:\eclipse\jre\javaw.exe javaw.exe in your current PATH

I have tried to put the exact path of JDK bin folder in eclipse.ini file but it didn't work

-vm
C:\Program Files\Java\jdk1.7.0_05\bin

Can somebody tell me what is the reason behind this issue and how can I solve it.

share|improve this question
what does java -version say in the command prompt? Where is eclipse installed? – gkris Jul 21 '12 at 7:38

6 Answers

Set environment variable Path.

Path=C:\Program Files\Java\jdk1.7.0_05\bin
share|improve this answer
I did that but Now I get the error of JNI file not found – Alfred James Jul 21 '12 at 7:47
No. You have to set Environment variable (Right mouse click on + properties + ..) youtube.com/watch?v=njsjWfwPZ2g – AVD Jul 21 '12 at 7:50
A little late to the party. But I just wanted to say I had the same JNI error and in my case it was that I had downloaded the wrong JDK. Also I was pointing to the wrong program files folder. – Kris Hollenbeck Apr 9 at 1:36

It might be because you haven't downloaded Oracle... I had the same issue.

share|improve this answer
I have downloaded the JDK from Oracle site. Now what I have to download – Alfred James Jul 21 '12 at 7:40

I think that eclipse needs to read the file Java, but it does not know where it is located. I normally specify the PATH variable when I install a Java SDK. I think you need to to this, too since it complains about "your current PATH".

Oracle tells you how to do this:

http://docs.oracle.com/javase/tutorial/essential/environment/paths.html

share|improve this answer

In your eclipse.ini file you need to specify the path to the Jave executable, not just the bin directory, as described in the Eclipse wiki. For example, like this:

-vm
C:\Program Files\Java\jdk1.7.0_05\bin\javaw.exe
share|improve this answer

When I had this problem, I solved the following way (I have Windows 7):

  1. Right click on the Eclipse icon in your desktop.
  2. Properties
  3. Target: C:\eclipse\eclipse.exe -vm C:\Java\jdk1.6.0_32\jre\bin\javaw.exe
share|improve this answer

Windows 7

From the desktop, right click the Computer icon. Choose Properties from the context menu. Click the Advanced system settings link. Click Environment Variables. In the section System Variables, find the PATH environment variable and select it. Click Edit. If the PATH environment variable does not exist, click New. In the Edit System Variable (or New System Variable) window, specify the value of the PATH environment variable. Click OK. Close all remaining windows by clicking OK.

C:\Program Files\Java

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.