Eclipse - Failed to create the java virtual machine

前端 未结 22 2586
礼貌的吻别
礼貌的吻别 2020-12-08 01:18

I\'m having issue with running my Eclipse with the following config:

eclipse.ini

-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--         


        
22条回答
  •  眼角桃花
    2020-12-08 01:36

    You can do a workaround as below:

    Create a shortcut for eclipse and right click on the short cut and go to properties of the shortcut.

    In the target box update the string:

    -vm "C:\Program Files\Java\jdk1.6.0_07\bin"
    

    the path will change according to your java installed directory.

    So after changing the target string will be something like below.

    D:\adt-bundle-windows-x86-20131030\eclipse\eclipse.exe -vm "C:\Program Files\Java\jdk1.6.0_07\bin"
    

    Click apply and try clicking the Eclipse shortcut.

提交回复
热议问题