Eclipse运行时提示failed to create the java virtual machine 如何解决

2024-11-07 10:35:09
推荐回答(5个)
回答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

将其修改为如下内容,即可启动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

回答2:

这是由于分配的内存太大引起的,可以调整eclipse.ini中的--launcher.XXMaxPermSize 1024M引起的,可以试着调小一些再启动试试

回答3:

其实说简单点,就是把ecipse.ini文件里的256M改为128M,将512M改为256M

回答4:

我也遇到了同样的问题,发现是我安装运行着QQ管家实时防护导致的,关闭了就行

回答5:

windows-->preferences-->java-->buildpath-->classpath 添加自己的jre