Not able to run Eclipse Application. Can't even start Eclipse IDE

前端 未结 12 1187
再見小時候
再見小時候 2020-12-03 23:06

I have an RCP product which doesn\'t run. Then I installed Eclipse freshly, and when I open Eclipse.exe it doesn\'t open Eclipse IDE. I get the error: NoClassDefFoundError:

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 23:58

    QTP installation mess up with classpath of many applications.

    Recommending setup a batch file to run each time so the global setup is not modified.

    set IBM_JAVA_OPTIONS=
    set _JAVA_OPTIONS=
    set JAVA_TOOL_OPTIONS=
    
    cd [your eclipse.exe]
    eclipse.exe
    

    Save it as .bat file and double click to run. You should see the eclipse working.

提交回复
热议问题