Failed to create the Java Virtual Machine||不知道为什么。。。大神们能告诉我吗?

版本:eclipse-jee-Indigo-win32

自己电脑上装的jdk版本是:1.6.0_20

解压后启动,发现弹出提示框“ Failed to create the Java Virtual Machine

Failed to create the Java Virtual Machine||不知道为什么。。。大神们能告诉我吗?_第1张图片

 

 

解决方法:

找到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
修改–launcher.XXMaxPermSize  128

如下:
-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.5
-Xms40m
-Xmx512m

 

先开始的时候是可以用的,后来昨天好像用金山卫士优化了开机启动和一些优化内存的配置

这下就不能用了,把256改成128就又可以用了,不知道什么原因,但是,一定和内存什么的有关系。

如果有哪位大神知道原因,忘不吝赐教!

你可能感兴趣的:(javaee)