hi all,
I am suffering a problem. Actually i was using eclipse galileo for a project. today, when i sit to do some works on it i am going to open eclipse. then the eclipse do some strange thing. it opens a window and show me the mesage on the window.
i found that, this information comes from eclipse.ini files and when i click ok button this exit the eclipse system. Then i delete the eclipse and unzip again and try to run. but it shows the same message. I am using windows xp and eclipse galileo my jdk is in program files/java folder. machine says that, java 1.6.0_20 but i can not find this on my program files and i actually found the java 1.6.0_17 on that java folder. Is it create some problem? please help me. I need it very badly.
I'd first try with a non-_20 release; lately I've seen a fair number of issues related to it. Doesn't mean it's the problem, but it's something easy to try.
Thank you every one. I solve it atlast. It was not the jdk problem, it was a memory management problem. I have to set the eclipse.ini as "-Xmx256m", replacing the "-Xmx512m" and the eclipse galileo are start running!!!
The latest eclipse.ini contents that you posted is vastly different from the first one you posted. The first one matches what I have on Windows, which lead me not to suspect that configuration. But it looks like you made a lot of changes, with the duplicate entries of -Xms being the most probable culprits (the JVM will not run if the min heap size specified is greater than the max heap size). Also, many of the lines are set incorrectly - you should place only one term per line. For example, line 14 should be split into two lines:
-vm
C:\program files\java\jre6\bin\client\jvm.dll
Mohammad Ashrafuddin Ferdousi
Ranch Hand
Joined: Jan 14, 2010
Posts: 111
posted
0
Peter Johnson wrote:The latest eclipse.ini contents that you posted is vastly different from the first one you posted. The first one matches what I have on Windows, which lead me not to suspect that configuration. But it looks like you made a lot of changes, with the duplicate entries of -Xms being the most probable culprits (the JVM will not run if the min heap size specified is greater than the max heap size). Also, many of the lines are set incorrectly - you should place only one term per line. For example, line 14 should be split into two lines:
-vm
C:\program files\java\jre6\bin\client\jvm.dll
Yes, You are very much right. I am already do this. thanks have a nice day.
Mohammad Ashrafuddin Ferdousi
Ranch Hand
Joined: Jan 14, 2010
Posts: 111
posted
0
David Newton wrote:
Mohammad Ashrafuddin Ferdousi wrote:I have to set the eclipse.ini as "-Xmx256m", replacing the "-Xmx512m" and the eclipse galileo are start running!!!
256m isn't enough... but it also looks like in the original you had the parameter as "-Xms512m", meaning you had two -Xms parameters.
Thanks for your response. Can you please say, what the parameter defines for eclipse galileo?