I am trying to get Eclipse Galileo to re-run on my computer - i have run it before with no problems but now i keep getting this 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've just done a fresh install of both the JDK and the SDK

I have Windows 7 (x64)

what's up with this? / how do i fix it->?

UPDATE-> i can't run any of the ipconfig / tracert / ping

link|improve this question

Java Runtime Environment is JRE not SDK... – Carlos Heuberger Jan 9 '10 at 18:50
Install a JRE - this gives a javaw.exe in your path. JDK's doesn't. – Thorbjørn Ravn Andersen Jun 11 '10 at 12:27
3  
@Carlos, each JDK brings a private JRE. – Thorbjørn Ravn Andersen Jun 11 '10 at 12:28
@Thorbjørn: and what is the point? I know that and also that JDK also brings a public JRE. I wrote that "Java Runtime Environment is not SDK" but you have to read the original post (before being edited on January 11th) to understand why I wrote it: "A java Runtime Environment (SDK) or..." – Carlos Heuberger Jun 11 '10 at 13:09
feedback

17 Answers

up vote 32 down vote accepted

(Just copying a former deleted answer, moved to this question:)

Eclipse will try to launch with the default "java.exe" (the first one referenced by your PATH)

Three things to remember:

  • "installing" a JRE or a JDK can be as simple as unzipping or copying it from another computer: there is no special installation steps, and you can have as many different JVM versions (1.4, 5.0, 6.0...) as you want, "installed" (copied) almost anywhere on your disk.
  • I would recommend to always run Eclipse with the lastest JRE possible (to benefit from the latest hotspot evolutions).
    You can:
  • the JVM you will reference within your Eclipse session is not always the one used for launching Eclipse because:
    • you only need a JRE to launch Eclipse, but once Eclipse launched, you should register a JDK for your projects (especially for Java sources and debugging purposes, also in theory for compilation but Eclipse has its own Java compiler)
      Note: You could register just a JRE within Eclipse because it is enough to run your program, but again a JVM will allow for more operations.
    • Even though the default registered Java in Eclipse is the one used to launch the session, you can want to register an older SDK (including a non-Sun one) in order to run/debug your programs with a JRE similar to the one which will actually be used in production.

alt text

link|improve this answer
feedback

Open up Windows' System Properties from the control panel and hunt down the environment variables section:

  • Add a JAVA_HOME entry pointing to the directory where the JDK is installed (e.g. C:\Program Files\Java\jre6)
  • Find the Path entry and add the following onto the end ;%JAVA_HOME%\bin
  • OK the changes
  • Restart eclipse so that it is aware of the new environment

Most Java tools will now be able to find your Java installation either by using the JAVA_HOME environment variable or by looking for java.exe / javaw.exe in the Path environment variable.

link|improve this answer
2  
When I added name:JAVA_HOME value: "C:\Program Files (x86)\Java\jdk1.6.0_14;%JAVA_HOME%\bin" I still get the same error – Wallter Jan 11 '10 at 15:23
feedback

...in your current PATH

It said PATH, not JAVA_HOME.

Rightclick My Computer and choose Properties (or click Winkey+Pause), go to the tab Advanced, click the button Environment Variables, in the System Variables list at the bottom select Path (no, not Classpath), click Edit and add ;c:\path\to\jdk\bin to the end of the value.

Alternatively and if not present, you can also add JAVA_HOME environment variable and make use of it. In the same dialogue click New and add JAVA_HOME with the value of c:\path\to\jdk. Then you can make use of it in the Path by adding ;%JAVA_HOME%\bin to end of the value.

link|improve this answer
It didn't work :) the data of the environment name: Path --- value: C:\Program Files (x86)\Java; C:\Program Files (x86)\Java\jdk1.6.0_14\bin – Wallter Jan 11 '10 at 15:28
Paths with spaces needs to be enclosed in quotes. – BalusC Jan 11 '10 at 17:48
I got same problem as stated above and this answer solved it. Thanks. – fleur Jul 27 '11 at 1:53
feedback

If you download the 64 bit version of Eclipse; it will look for the 64 bit version of JRE. If you download the 32 bit version of Eclipse; it will look for the 32 bit version of JRE

What I did was to install the both the 32 and 64 bit version of JRE. You can get that from the SUN Oracle site. The JAVA site seems to automatically install the 32 bit version of Java. I guess that's because of the web browser.

link|improve this answer
1  
As ladookie said the problem most likely was the browser running bad code on Java's web site and getting the wrong version of JAVA... – Wallter Nov 16 '10 at 19:24
speedbaron is completely right here. If you're modifying your environmental variable PATH, make sure you put the path of the correct version. My Windows 7 64-bit system had a 32-bit JRE installed (don't know why), so I installed the 64-bit version and added to PATH the new directory. It seems to work well now. – user796837 Aug 1 '11 at 22:02
feedback

I have windows 7 64-bit, and I had this same problem with eclipse. To get it to work, I had to use internet explorer (64-bit version) to download java. This was the only way to get java to install a 64-bit version. When I used firefox to install java, it automatically installed a 32-bit version (so idiotic!). And The Eclipse 64-bit version wouldn't detect the java 32-bit version.

link|improve this answer
I don't have the problem anymore - but this seems like a good solution and makes sense - it would be interesting to test this with other 64bit browsers... – Wallter Nov 16 '10 at 19:22
feedback

It turned out that all I needed to do was change the 'path' to:

"C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem; C:\Program Files (x86)\Java; C:\Program Files (x86)\Java\jdk1.6.0_14\bin"

that did it :)

link|improve this answer
1  
BTW, you should use jdk1.6.0_16 or later. Using jdk 1.6.0_14 you cannot use breakpoints correctly in Eclipse: bugs.eclipse.org/bugs/show_bug.cgi?id=279137 – Csaba_H Jan 12 '10 at 15:49
@Csaba: good point – Wallter Nov 16 '10 at 19:27
feedback

I had a co-worker with this exact problem last week. He fixed it by installing the x64 version of Eclipse and the x64 JDK.

Edit: he reused his old workspace after installing the necessary plugins, so that should not be much of an issue

link|improve this answer
feedback

This should really be asked on http://superuser.com but have you tried setting your JAVA_HOME to the correct folder? Google for setting environment variables in Windows.

link|improve this answer
I followed these instructions: wso2.org/project/wsas/java/2.0-beta/docs/setting-java-home.html but to no avail – Wallter Jan 8 '10 at 20:21
I hate to say it...but have you restarted? – Topher Fangio Jan 8 '10 at 20:22
Restarting is not necessary to install Java. – Thorbjørn Ravn Andersen Jan 8 '10 at 21:06
1  
neither is JAVA_HOME necessary. It is the PATH which is used to find the javaw.exe. (JAVA_HOME is used by some other applications like ant, so it's not wrong setting it anyway) – Carlos Heuberger Jan 8 '10 at 23:08
feedback

Check Window > Preferences > Java > Installed JREs. Make sure there's something there; if there isn't, add one.

Did you recently update your JDK?

link|improve this answer
I don't believe he can start Eclipse, so he won't see the Window menu... – Topher Fangio Jan 8 '10 at 20:23
Yes I tried to add the android add-on. But no (like Topher Fangio said,) I can't start Eclipse now. – Wallter Jan 11 '10 at 15:31
feedback

The JDK does not install a JVM in the default path.

Unless you need external tools to run like ant, the non-JDK is enough for Eclipse to run. The easiest way to install such a JVM is to go to http://java.com and let it install whatever it want to install.

Then double-click the Eclipse binary again.

link|improve this answer
I re-installed it (it even asked if i wanted to reinstall it) with no avail. ( I did both the Google Chrome plugin 14 - or something like that && the Firefox ) – Wallter Jan 11 '10 at 15:36
You went to java.com? Not javasoft.com? – Thorbjørn Ravn Andersen Jan 11 '10 at 17:05
feedback

set JAVA_HOME variable and ad JAVA_HOME/bin to evnrionment path variable.

link|improve this answer
like this: "C:\Program Files (x86)\Java; C:\Program Files (x86)\Java\jdk1.6.0_14\bin" ? - it still didn't work :) – Wallter Jan 11 '10 at 15:34
feedback

There is an easier way to do that. Just run cmd x64. Type cmd x64 to search bar in start menu ant you will find it :) Or alternatively, you should set path to program files (x86) ... For example C:\Program Files (x86)\Java\jre6

link|improve this answer
feedback

Just Add the JRE PATH FOR Ex: C:\Program Files\Java\jre5\bin in the environmental variable Put ";" in between every path. Then click the eclipse.exe It will work.....

link|improve this answer
feedback

I had the same issue (Windows 7 x64, 64bit JDK, 32bit Eclipse), and I found 2 solutions:

  • Install the 64 bit version of Eclipse (found by clicking the "Development Builds" tab on the downloads page.)
  • Install the 32bit version of the JDK.
link|improve this answer
See but you were using Windows 7 x86 where I was using x64 --- as others have stated this problem may have been a glych on SUN's part in their programing of how their web page 'detects the version' (i.e. x64 or x86) you should use – Wallter Nov 16 '10 at 19:27
Correction, I was using Windows 7 x64 – Tim M Jan 31 '11 at 17:21
feedback

in the eclipse.ini update the path to the vm to point to where javaw.exe is installed on your machine

link|improve this answer
feedback

make a batch file in the eclipse folder and write in it :

eclipse -vm C:\Sun\SDK\jdk\jre\bin\javaw.exe

see http://wiki.eclipse.org/FAQ_How_do_I_run_Eclipse%3F

link|improve this answer
feedback

I had the same problem. The easy way, for me to fix it was to install both the JRE and the eclipse as x86 or x64. When their bit type did not match, eclipse could not find it. So, if it is not a big deal for you to uninstall and reinstall in order to make them match, I would do that.

I ended up installing: Java Runtime Environment 1.7.0.3 (64-bit) and Eclipse Indigo (3.7) (64-bit)

Then it just works.

link|improve this answer
feedback

protected by Jeff Atwood Mar 22 '11 at 4:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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