启动myeclipse出现java was started but returned exit code=-1错误的解决方案

启动myeclipse出现java was started but returned exit code=-1错误的解决方案_第1张图片

总结一下在网上找的一下三种方案:

1、在myeclipse 2017的安装目录下找到路径
E:\JAVA\myeclipse 2017\binary\com.sun.java.jdk8.win32.x86_64_1.8.0.v112\jre\bin\server\jvm.dll(根据自己安装的目录而定)

并在myeclipse 2017的安装目录下的myeclipse.ini里输入

-vm

E:\JAVA\myeclipse 2017\binary\com.sun.java.jdk8.win32.x86_64_1.8.0.v112\jre\bin\server\jvm.dll

启动myeclipse出现java was started but returned exit code=-1错误的解决方案_第2张图片

2、找到电脑里的jdk的安装路径C:\Program Files\Java\jdk1.8.0_161\bin\javaw.exe(根据自己安装的目录而定)

并在myeclipse 2017的安装目录下的myeclipse.ini里输入

-vm

C:\Program Files\Java\jdk1.8.0_161\bin\javaw.exe

3、在myeclipse 2017的安装目录下找到E:\JAVA\myeclipse 2017\configuration\org.eclipse.osgi(根据自己安装的目录而定)

并将其目录下的所有文件全部删除

以上三种方法中我是通过第三种方法解决这个问题的。

你可能感兴趣的:(JAVA)