2014-06-25 70 views
3

enter image description hereEclipse中返回的錯誤消息「的Java已啓動,但返回的退出碼= 1」

好了,我曾試圖安裝一個新的JDK/JRE,突然我的Eclipse將不會打開。我試圖卸載舊的Java形式並重新安裝我需要的Java,並拒絕打開。我搜索了這個,並在網上嘗試了十幾個答案,但沒有一個適合我。這非常令人沮喪。想法?

+1

http://stackoverflow.com/questions/18609160/eclipse-returns-error-message-java-was-started-but-returned-exit-code-1 –

+0

我已經找到這個問題,但由於沒有屏幕截圖或描述它在哪裏,我無法從中找出它......我知道這讓我很蠢,但我需要更多的一步一步的指示。 – user2847749

回答

10

所以我嘗試了一切,我可以找到像5小時,並最終碰到這個...... 打開你的eclipse.ini文件。它將在筆記本中打開。礦區位於此處 d:\ eclipse_3.8.1 \日食

文件開始出去找這樣的:

-startup 
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar 
--launcher.library 
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813 
-showsplash 
org.eclipse.platform 
--launcher.XXMaxPermSize 
256m 
--launcher.defaultAction 
openFile 
-vmargs 
-Xms512m 
-Xmx2G 

以上-vmargs,添加以下兩行:

-vm 
location of your jdk javaw.exe file 

使它看起來像這樣:

-startup 
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar 
--launcher.library 
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813 
-showsplash 
org.eclipse.platform 
--launcher.XXMaxPermSize 
256m 
--launcher.defaultAction 
openFile 
-vm 
C:\Program Files\Java\jdk1.6.0_45\bin\javaw.exe 
-vmargs 
-Xms512m 
-Xmx2G 
+1

確保您輸入的行顯示爲:路徑在單獨的行上,與-vm不在同一行。 –

相關問題