Just installed Windows 10 and Eclipse no more starts

后端 未结 8 965
醉酒成梦
醉酒成梦 2021-01-12 02:37

I just upgraded from Windows 8 to Windows 10 (both 64-bit) and my previous Eclipse Juno with ADT-plugin for Android development is no longer starting.

All I can see

8条回答
  •  感情败类
    2021-01-12 02:50

    Retain single version of java and uninstall all other versions
    and update the eclipse.ini text file as below but change the java path and versions appropriately.
    
    
    
    
    -startup
    plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    --launcher.library
    plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502
    -product
    org.eclipse.epp.package.java.product
    --launcher.defaultAction
    openFile
    --launcher.XXMaxPermSize
    256M
    -showsplash
    org.eclipse.platform
    --launcher.XXMaxPermSize
    256m
    --launcher.defaultAction
    openFile
    -vm C:\Program Files\Java\jdk1.6.0_35\bin\javaw.exe
    -vmargs
    -Dosgi.requiredJavaVersion=1.6
    -Xms40m
    -Xmx1024m
    

提交回复
热议问题