Eclipse does not start when I run the exe?

前端 未结 26 849
轻奢々
轻奢々 2021-02-01 00:19

When I run the Eclipse.exe within the given folder, it will not start. The Eclipse splash screen will appear for a split second then close. There are no errors.

I\'ve t

相关标签:
26条回答
  • 2021-02-01 01:00

    Reinstalling eclipse (newer version) did the trick for me.

    0 讨论(0)
  • 2021-02-01 01:02

    The actual issue should be with the OS architecture, the JDK (32bit or 64 bit) installed and the eclipse type u installed.

    Bring them in sync, things would work completely fine.

    Just have a check at the Eventlog as mentioned by @Viji Ideally u should encounter error like RADAR_PRE_LEAK_64

    0 讨论(0)
  • 2021-02-01 01:03

    What system you have - 32-bit or 64-bit? You say it was installed into (x86) folder. But normally (x86) is a default for the 32-bit JDK, not for 64-bit JDK. If you used defaults, then it seems that you installed 32-bit JDK instead of 64-bit.

    0 讨论(0)
  • 2021-02-01 01:03

    I tried everything except this. After rigorous trials,Uninstalling java 8 update 25 helped me.

    0 讨论(0)
  • 2021-02-01 01:03

    I just had this issue in Eclipse Neon. After trying all these suggestions, it turned out that in my case the problem was improperly configured path variables.

    There is a pretty good answer already posted here which explains it, but I'll summarize it in this answer for convenience.

    You will need to go into your User Environment Variables panel and modify the following values:

    • JAVA_HOME : C:\Program Files\Java\jdk1.8.0_102
    • JDK_HOME : %JAVA_HOME%
    • JRE_HOME : %JAVA_HOME%\jre
    • CLASSPATH : .;%JAVA_HOME%\lib;%JAVA_HOME%\jre\lib
    • PATH : your-unique-entries;%JAVA_HOME%\bin (make sure that the longish your-unique-entries does not contain any other references to another Java installation folder.
    0 讨论(0)
  • 2021-02-01 01:04
    eclipse.exe -clean -clearPersistedState
    

    All you have to do is go the dir where your eclipse.exe is there and run the above command

    0 讨论(0)
提交回复
热议问题