關於處理eclipse崩潰的問題

在64位機器上,eclipse非常不穩定,新建一個文件或文件夾都會死。
解決方案:
-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith 

參考帖子:
http://hi.baidu.com/weiqi228/blog/item/d8cca70233d6650a4bfb51df.html
http://www.linuxsir.org/bbs/thread330512.html


Java was started but returned exit code=-805306369
網上解決方案:
防止Eclipse死的方法,將eclipse.ini內容改爲:
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100503
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms1024m
-Xmx1024m
-XX:MaxPermSize=128m
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled
-XX:+UseParallelGC
-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith


我個人這樣做了,依然報錯。
最後解決方案:
刪除D:\workspaces\android\.metadata\.plugins\org.eclipse.core.resources下的.snap文件






java was started but returned exit code 1
解決方案:
在eclipse.ini中加入JVM的路徑說明:
-vm
C:\Program Files\Java\jdk1.6.0_22\bin\javaw.exe
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章