您的位置:首页 > 编程语言 > Java开发

Eclipse运行时提示failed to creat…

2014-09-25 13:27 253 查看
几经周折终于找到了解决办法,特与朋友们分享,方法如下:
找到eclipse目录下的eclipse.ini,可以看到如下内容:

-startup

plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar

--launcher.library

plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503

-product

org.eclipse.epp.package.jee.product

--launcher.defaultAction

openFile

--launcher.XXMaxPermSize

256M
-showsplash

org.eclipse.platform

--launcher.XXMaxPermSize

256m
--launcher.defaultAction

openFile

-vmargs

-Dosgi.requiredJavaVersion=1.5
-Xms40m

-Xmx512m

将其修改为如下内容,即可启动Eclipse

-startup

plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar

--launcher.library

plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503

-product

org.eclipse.epp.package.jee.product

--launcher.defaultAction

openFile

--launcher.XXMaxPermSize

128M
-showsplash

org.eclipse.platform

--launcher.XXMaxPermSize

128m
--launcher.defaultAction

openFile

-vmargs

-Dosgi.requiredJavaVersion=1.6
-Xms40m

-Xmx256m

参考资料:来自Eclipse官网
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐