`

Failed to create the Java Virtual Machine

 
阅读更多
来自 http://apps.hi.baidu.com/share/detail/30819988


以前用的eclipse-jee因为在部署项目过程中总是出现bug被我删除。今天去eclipse官网又下了一个Eclipse IDE For Java EE Developers。

版本是:eclipse-jee-helios-SR1-win32.zip

我的jdk版本是:1.6.0_20

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



针对这个问题在网上寻找解决方案。找到几个,全是Ctrl c/v,不带半句解释。

后来,靠着差强人意的有限英语水平,在eclipse官网的论坛搜索,发现此问题是一bug。

“The Java bug was closed for voting and comments at 6969236 on the Java BugParade because the change has been reverted; the related Eclipse bug report is open for oting and comments at bug 319514. ”-引用eclipse官网

在修复版本推出之前它提供了一个解决方法:

打开eclipse目录下的eclipse.ini文件,修改–launcher.XXMaxPermSize属性,其中此属性有两处

-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810
-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

将其值改为128m即可,如下。(事实上,只改后面一个就可以,启动eclipse时以后者为准)

-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810
-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

然后就可以成功启动。

Eclipse调试Java程序出现Socket closed.(cannot connect to VM)错误,
如果在用eclipse调试(或运行)java程序时,出现了cannot connect to VM 错误,实在找不出什么原因,可以检查以下几个方面。
1、如果在linux系统下,要把127.0.0.1 localhost 加到配置文件中(更改hosts文件)。

2、如果在XP系统下,请检查杀毒软件的防火墙。

3、经过我测试,在安装卡巴斯7.0后eclipse调试java项目时就有可能出现上述错误,就算你退出卡巴也不行,只能御载。

4、但卡巴6.0和8.0没有问题!!
分享到:
评论

相关推荐

    Eclipse运行时提示failed to create the java virtual machine

    ### Eclipse 运行时提示 "failed to create the java virtual machine" 的解决方法 在使用 Eclipse 进行 Java 开发的过程中,有时会遇到一个常见的错误提示:“failed to create the java virtual machine”。这一...

    解决Eclipse启动出错:Failed to create the Java Virtual Machine

    解决Eclipse启动出错:Failed to create the Java Virtual Machine Eclipse是一款功能强大的集成开发环境(IDE),广泛应用于Java、Python、C++等语言的开发中。但是在使用Eclipse时,用户可能会遇到各种错误,例如...

    Eclipse 开发java 出现Failed to create the Java Virtual Machine错误解决办法

    在使用Eclipse进行Java开发的过程中,有时会遇到一个棘手的问题——"Failed to create the Java Virtual Machine"(JVM创建失败)。这个问题通常是由于Eclipse配置文件中的Java虚拟机设置不正确或者与系统环境不兼容...

    eclipse_failed_to_create_the_java_virtual_machine_问题图文解析_收藏

    "Eclipse Failed to Create the Java Virtual Machine 问题图文解析" Eclipse 是一个功能强大的集成开发环境(IDE),广泛应用于软件开发、测试和维护中。然而,在使用 Eclipse 时,可能会遇到 "Failed to create ...

    Java Virtual Machine.xmind

    Java Virtual Machine.xmind

    MemoryAnalyzer-1.9.1.20190826-win32.win32.x86_64_.zip

    假如你机器的内存不大,改大该参数的值,会导致MemoryAnalyzer启动时,报错:Failed to create the Java Virtual Machine。 2.当你导出的dump文件的大小大于你配置的1024m(说明1中,提到的配置:-vmargs– Xmx1024m...

    解决eclipse启动时报错Failed to create the Java Virtural Machine.问题的方法

    在使用Eclipse进行Java或Android开发时,可能会遇到“Failed to create the Java Virtual Machine”这样的启动错误。这个错误通常表明Eclipse无法初始化Java虚拟机(JVM),这可能是由于多种原因引起的,包括JVM配置...

    MemoryAnalyzer内存分析工具单独软件无需安装18.1

    假如你机器的内存不大,改大该参数的值,会导致MemoryAnalyzer启动时,报错:Failed to create the Java Virtual Machine。 2.当你导出的dump文件的大小大于你配置的1024m(说明1中,提到的配置:-vmargs– Xmx1024m...

    SymbianS60平台JAVA开发环境搭建步骤.pdf

    - 当启动Eclipse时,可能会遇到"Failed to create the Java Virtual Machine"的错误。解决这个问题,你需要编辑Eclipse安装目录下的`eclipse.ini`文件。找到`-XXMaxPermSize`参数,将其值改为128M(如`-launcher....

    Android环境搭建详解

    在搭建环境的过程中,用户可能会遇到一些常见的错误,例如在Eclipse启动时出现“failed to create the Java Virtual Machine”错误提示,这种情况下,建议用户检查系统JDK的安装和环境变量设置是否正确,或者尝试...

    Eclipse,MyEclipse开发Web项目.doc

    - **Eclipse打开报错:failed to create the java virtual machine**:这通常是因为JVM内存设置不足。可以在eclipse.ini文件中调整`-Xms`和`-Xmx`参数,降低初始和最大堆内存分配。 - **解决方法一**:将`-Xms256m...

    eclipse问题解决

    **问题描述**:启动Eclipse时提示“Failed to create the Java Virtual Machine”或“Error occurred during initialization of VM”。 **解决方案**: - **增加内存分配**:打开Eclipse的启动脚本(在Windows系统...

    Android Studio 报错failed to create jvm error code -4的解决方法

    然而,有时在安装和启动Android Studio时,开发者可能会遇到一些问题,其中之一就是"failed to create JVM (Java Virtual Machine) error code -4"。这个错误通常意味着Android Studio在尝试启动时遇到了与JVM相关的...

    Docker-in-Action.pdf

    was to create something that would help people of mixed backgrounds get up to speed on Docker as quickly as possible, but in such a way that they understand the underlying mechanisms. The hope is that...

    create_ondemand_request

    在IT行业中,"create_ondemand_request"通常指的是创建按需请求的能力,这在很多场景下都是非常关键的,比如云服务、数据处理或者自动化任务调度等。在这个特定的上下文中,我们关注的是一个名为"create_ondemand_...

    Google C++ Style Guide(Google C++编程规范)高清PDF

    The main reason for making a virtual function inline is to place its definition in the class, either for convenience or to document its behavior, e.g., for accessors and mutators. The -inl.h Files...

    解决virtualbox不能为虚拟电脑打开一个新任务。

    在使用VirtualBox虚拟化软件时,可能会遇到“不能为虚拟电脑打开一个新任务”的错误,这通常是由于多种原因导致的。对于这个问题,我们需要深入理解VirtualBox的工作原理,并采取相应的解决方案来修复。...

    8-07-14_MegaCLI for linux_windows

    LSIP200232870 (DFCT) Add a Gen2 to Gen3 toggle function and a check for the PCI speed to MegaSCU/CLI [ PR : LSIP200231423 ] LSIP200232927 (DFCT) Port PR 198414 to MR5.4 (Headless Boot) ...

    vmtools-linux.iso

    Thepath "/usr/share/doc/vmware-tools" does not exist currently.Thisprogram isgoing to create it, including needed parent directories.Isthis what you want? [yes] The installation of VMware Tools 5.5.1 ...

Global site tag (gtag.js) - Google Analytics