本文主要是介绍Ubuntu系统软件中心安装eclipse启动报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Ubuntu系统软件中心安装eclipse启动时报错
前两天在双系统上配置大数据平台,在ubuntu上安装软件中心的eclipse3.8.1-11。在启动eclipse时,无法打开,出现以下报错:
!SESSION Fri Jul 10 14:52:30 CST 2020 ------------------------------------------
!ENTRY org.eclipse.equinox.launcher 4 0 2020-07-10 14:52:30.896
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:626)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
在网上搜索了很多方法,尝试后无效,最后找到一篇帖子,成功解决问题。
在Eclipse配置目录:/usr/lib/eclipse/configuration,打开config.ini,有如下一行:
osgi.framwork=file:plugins/org.eclipse.osgi_3.8.1.dist.jar
在plugins目录(/usr/lib/eclipse/plugins)目录下,找不到该包,在网上搜索无果,最后在java中找到类似jar包:
/usr/share/java/org.eclipse.osgi.nb.jar
将该jar包复制到plugins目录下,重命名为org.eclipse.osgi_3.8.1.dist.jar
再次启动eclipse时就没有问题了,折磨一天的问题终于解决了!!!
原帖链接:https://www.cnblogs.com/whitexatu/p/12306448.html
这篇关于Ubuntu系统软件中心安装eclipse启动报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!