web-dev-qa-db-ja.com

Eclipseが起動しない

公式のUbuntuリポジトリ(Sudo apt install Eclipse)からEclipseを新たにインストールしました。ランチャーまたはターミナルから実行すると、起動せず、このエラーメッセージが表示されます

An error has occurred. See the log file

ログファイルの内容は次のとおりです。

!SESSION Mon May 28 17:52:17 IRDT 2018 -----------------------------------------
!ENTRY org.Eclipse.equinox.launcher 4 0 2018-05-28 17:52:18.099
!MESSAGE Exception launching the Eclipse Platform:
!STACK
Java.lang.ClassNotFoundException: org.Eclipse.core.runtime.adaptor.EclipseStarter
    at Java.base/Java.net.URLClassLoader.findClass(URLClassLoader.Java:471)
    at Java.base/Java.lang.ClassLoader.loadClass(ClassLoader.Java:566)
    at Java.base/Java.lang.ClassLoader.loadClass(ClassLoader.Java:499)
    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)
$ dpkg --status Eclipse
Package: Eclipse
Status: install ok installed
Priority: optional
Section: devel
Installed-Size: 99
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 3.8.1-11
Depends: Eclipse-jdt (>= 3.8.1-11), Eclipse-pde (>= 3.8.1-11)
Description: Extensible Tool Platform and Java IDE
 The Eclipse Platform is an open and extensible platform for anything and yet
 nothing in particular. It provides a foundation for constructing and running
 integrated software-development tools. The Eclipse Platform allows tool
 builders to independently develop tools that integrate with other people's
 tools so seamlessly you can't tell where one tool ends and another starts.
 .
 This package provides the whole Eclipse SDK that contains Eclipse Platform,
 Java development tools and Plug-in Development Environment, including source
 and both user and programmer documentation.
Original-Maintainer: Debian Orbital Alignment Team <[email protected]>
Homepage: http://www.Eclipse.org/

$ apt-cache policy Eclipse
eclipse:
  Installed: 3.8.1-11
  Candidate: 3.8.1-11
  Version table:
 *** 3.8.1-11 500
        500 http://ir.archive.ubuntu.com/ubuntu bionic/universe AMD64 Packages
        500 http://ir.archive.ubuntu.com/ubuntu bionic/universe i386 Packages
        100 /var/lib/dpkg/status

他のエラーや警告は表示されません。私はXubuntu 18.04にいます。

7
Parsa2820

より簡単で快適にするためにお勧めします:

Sudo apt --remove purge Eclipse

または

Sudo apt --remove purge netbeans

sNAPフォームをインストールします。

Sudo snap install Eclipse --classic

または

Sudo snap install netbeans --classic

1
Avansot

最新のEclipseスナップパッケージをインストールすることをお勧めします(Eclipse IDE for Java Developers version 4.7.3):

Sudo snap install Eclipse --classic  

スナップパッケージをaptパッケージと一緒にインストールして試してみてください。その後、スナップパッケージがよければ、Eclipse aptパッケージを削除します。

1
karel