我正在尝试使用Eclipse进行Android开发。我在尝试运行Eclipse时遇到了这个问题,因为几分钟前刚刚安装了4.2版本。

在第一次尝试在没有任何参数指定Java VM的情况下启动Eclipse之后,我得到了一条错误消息,说它在Eclipse文件夹中找不到一个名为javaw.exe的Java VM,所以我找到了Java安装的位置,并在快捷方式的目标中将该位置指定为参数。现在我得到一个不同的错误,Java已经启动,但返回退出代码=13。

类似的问题似乎表明这是一个32位/64位的冲突,但我有99%的肯定,我下载了64位版本的Eclipse和Java (RE 7u5),我选择这两个版本是因为我有64位的Windows 7。

如果有人知道如何确认我的Eclipse和Java是64位的, 非常感谢。 如果你认为我的问题不同,请帮忙! 请尽量直白地说,因为我对Eclipse完全不熟悉 和Java。

“C:\Program Files\ eclipse - sdk -4.2-win32-x86_64\eclipse\eclipse.exe”-vm“C:\Program Files (x86)\Java\jre7\bin\javaw.exe”

完整的错误代码…

Java was started but returned exit code=13
C:\Program Files (x86)\Java\jre7\bin\javaw.exe
-Xms40m
-Xmx512m
-XX:MaxPermSize=256m
-jar C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\\plugins/org.eclipse.equinox.launcher_1.30v20120522-1813.jar
-os win32
-ws win32
-arch x86_64
-showsplash C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\\plugins\org.eclipse.platform_4.2.0.v201206081400\splash.bmp
-launcher C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\eclipse.exe
-name Eclipse
--launcher.library C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\\plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v201205221813\eclipse_1503.dll
-startup C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\\plugins/org.eclipse.equinox.launcher_1.30v20120522-1813.jar
--launcher.overrideVmargs
-exitdata 1e30_5c
-vm C:\Program Files (x86)\Java\jre7\bin\javaw.exe
-vmargs
-Xms40m
-Xmx512m
-XX:MaxPermSize=256m
-jar C:\Program Files\Eclipse-SDK-4.2-win32-x86_64\eclipse\\plugins/org.eclipse.equinox.launcher_1.30v20120522-1813.jar

当前回答

史上最奇怪的方法。查看Eclipse路径,确保没有奇怪的字符(比如!、#和@)。这对我很管用。

其他回答

结果发现我只安装了32位Java运行时。

C:\Program Files (x86)\Java\jre1.8.0_45\

Eclipse真正需要的只是我安装64位Java运行时。< =解决

Java SE Runtime Environment 8u45  jdk-8u45-windows-x64.exe

http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html

Confirm your installation by checking you now have this folder

    C:\Program Files\Java\jre1.8.0_45\

我得到这个错误,发现我的PATH变量(在Windows上)可能被改变了。在我的PATH中的第一个条目是:

C:\ProgramData\Oracle\Java\javapath

...Eclipse运行“C:\ProgramData\Oracle\Java\javapath\javaw”——就会报错。我怀疑这是随着Java 8的安装而来的。

我安装了几个Java版本(6、7和8),所以我从PATH中删除了该条目,并尝试重新启动Eclipse,结果运行正常。

如果它不适合你,你需要升级你的JDK(到Java版本-在本例中是8)。

关于如何编辑PATH变量的说明

I had the same issue... installed STS but consistently got the "java was started but returned exit code=13" message. My issue was that I was using the default install file, which was not processor specific, from https://spring.io/tools/sts. I had to dive deeper to be very specific in downloading the 64 bit version. It was not intuitive as to which version you were downloading. Once I got the 64 bit version (note that the zip file still includes 'win32' in the name, just appends '-64' at end) it worked.

有OS、JDK和Eclipse的工作组合。在我的例子中,我使用的是64位JDK和64位操作系统上的32位Eclipse。在将JDK降级为32位之后,Eclipse开始工作。

使用下列组合之一。

32位OS, 32位JDK, 32位Eclipse(仅32位) 64位OS, 32位JDK, 32位Eclipse 64位OS, 64位JDK, 64位Eclipse(仅64位)

我也面临着同样的问题。我已经安装了版本8和更新25 32位。

要修复此问题,请安装Java SE Development Kit 7 Update 71(64位)。然后通过appwiz。cpl,删除另一个版本,即Java Update 25。完成了。