Eclipse: JVM terminated. Exit code=2

前端 未结 6 801
走了就别回头了
走了就别回头了 2020-11-29 06:38

I recently decided to start trying Android app development, so I downloaded the Java SE Development Kit 8 (x86) for Windows (I got Windows 8 64bit, but my guide recommends g

6条回答
  •  甜味超标
    2020-11-29 07:15

    I had the same issue and was trying to install different versions of JDK: 1.6, 1.7, 1.8.

    It didn't help much.

    The problem was resolved when I changed PATH variable by removing

    C:\ProgramData\Oracle\Java\javapath;
    

    In command prompt I also ran following commands:

    set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_25
    set PATH=C:\Program Files\Java\jdk1.8.0_25\bin;%PATH%
    

    But I think the most important was to remove C:\ProgramData\Oracle\Java\javapath; from the PATH.

提交回复
热议问题