views:

34

answers:

1

Every time I open eclipse Galilio on Windows 7 64bit this message appear and it won't work

-------------------------------------------------------------------------------------
Faild to load the JNI shared library "C:\Program Files(x86)\java\jre6\client\jvm.dll"
-------------------------------------------------------------------------------------

Help me please.

+1  A: 

If you are using the 64-bit distribution of Galileo, you need a 64bit distribution of JRE (not a 32bit installed in "C:\Program Files(x86)").

If not (you are using a 32bit) version, you can (as in this thread),

  • Check your path variable,
  • make sure that if you type "java -version" at a command prompt you get the version you expect.
  • Or better yet, edit your eclipse.ini file to specify a particular JVM location.
    See http://wiki.eclipse.org/Eclipse.ini for examples.
VonC
The jre I used is from this page http://java.com/en/download/manual.jsp How can I know if my jre is 64-bit
SultanSh
The dll exist but I don't know if other java program work I'll check
SultanSh
@SultanSh: `java -version` should be enough
VonC
version is set 1.6.2 which is mine still didn't worked
SultanSh
Thanx Vonc your are advice was the solution.the only problem was I have to make a folder named JRE6 not JRE.
SultanSh
@SultanSh: interesting: that way, you follow the default path where it expect to find a JRE.
VonC