Eclipse ADT: Java was started but returned exit code=13

后端 未结 15 1225
你的背包
你的背包 2020-12-19 21:23

Could someone one clarify why my Eclipse (http://developer.android.com/sdk/index.html) from ADT won\'t start?

Every time I\'m getting this error:

---         


        
15条回答
  •  有刺的猬
    2020-12-19 21:49

    The error is because you have not specified the path to the javaw.exe file which is in jdk.

    1. open eclipse.ini file
    2. after vmargs command(ie below the vmargs command - since they have to be in separate lines) add the following line
      -vm C:\Program Files\Java\jdk1.7.0_51\bin\javaw.exe NOTE : that the -vm shud b in one line and the path to the javaw.exe file must be in another line
    3. save the file
    4. run the eclipse.

提交回复
热议问题