2017-08-10 97 views
0

error dialog 打開Eclipse時,將打開一個對話框,在這裏是在對話框中顯示的消息:打開Eclipse時,爲什麼會出現錯誤對話框?

JVM terminated. Exit code=1 
/usr/bin/java 
-Xms256m 
-Xmx1024m 
-XX:MaxPermSize=256m 
-jar /opt/marseclipse//plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar 
-os linux 
-ws gtk 
-arch x86_64 
-launcher /opt/marseclipse/eclipse 
-name Eclipse 
--launcher.library /opt/marseclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.300.v20150602-1417/eclipse_1612.so 
-startup /opt/marseclipse//plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar 
--launcher.appendVmargs 
-exitdata c78010 
-data /root/workspace2 
-application org.eclipse.cdt.managedbuilder.core.headlessbuild 
-import /root/workspace2/ut 
-vm /usr/bin/java 
-vmargs 
-Xms256m 
-Xmx1024m 
-XX:MaxPermSize=256m 
-jar /opt/marseclipse//plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar 

請指導!

+0

無法打開圖像鏈接。它與java路徑有關嗎? –

+0

我使用Mars.2並安裝CDT(似乎是helios ver。)。然後在Eclipse中使用Runtime.getRuntime.exec()調用「eclipse -data myworkspace -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -import myproject」和「eclipse -data myworkspace」以打開另一個Eclipse工作臺。然後這個對話框打開,但讓我困惑的是新的工作臺似乎很好。 – aaltonen

回答

0

好了,似乎有一個內存problem.You可以去配置文件,並增加Xms256m大小爲512或以往任何時候都適用於無法釋懷的堆內存即Xms256m取決於你的物理內存1024 OS.So相應地改變。

您可以通過運行要customizeand打開標籤的參數,並添加-Xmx或X毫秒由自己解決的VM參數部分

0

配置更改。我通過調用Runtime.getRuntime.exec()從第一個工作臺運行eclipse兩次(第一次導入項目到新的工作臺,第二次打開新的工作臺)。我忘了做process1.waitFor(),所以新的工作臺打算同時運行兩次,這是根本原因。

相關問題