创建新项目时 Eclipse 自动关闭

创建新项目时 Eclipse 自动关闭

当我在 Eclipse 中单击使用此命令安装的新项目上的“完成”时sudo apt-get 安装 eclipse 平台。出现此弹出窗口,无论我选择“是”或“否”,它都会关闭该应用程序:

在此处输入图片描述

我曾尝试从终端运行 eclipse,以便查看发生了什么,但我不太擅长找出问题所在,但这是我得到的结果:

jeggy@jeggy-Dell-System-XPS-L502X:~$ eclipse
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 14: reading configurations from ~/.fonts.conf is deprecated.
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f305f07a528, pid=11475, tid=139846321936128
#
# JRE version: 7.0_25-b30
# Java VM: OpenJDK 64-Bit Server VM (23.7-b01 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libgobject-2.0.so.0+0x19528]  g_object_get_qdata+0x18
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/jeggy/hs_err_pid11475.log
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
#   https://bugs.launchpad.net/ubuntu/+source/openjdk-7/
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

出现字体错误是因为我正在运行 Kubuntu,我马上就遇到了这个错误,但我认为这与我在创建新项目时关闭它没有任何关系。如果有人感兴趣,我发布了pid11475.log 此处.正如那里所说尝试“ulimit -c unlimited”,我已尝试过,但没有任何改变。

答案1

我在 Kubuntu 14.10 上也遇到了同样的问题。我甚至无法在“系统偏好设置”->“应用程序外观”下更改主题,因为当我尝试单击“应用程序外观”时,eclipse 就崩溃了。

但是按照说明编辑 /usr/share/themes/oxygen-gtk/gtk-2.0/ 下的 gtkrc 文件https://stackoverflow.com/questions/26436009/eclipse-luna-crashes-on-new-project-in-ubuntu终于成功了。更改此行:

 GtkComboBox::appears-as-list = 1

到:

 GtkComboBox::appears-as-list = 0

答案2

我遇到了同样的问题,结果发现是由于oxygen-gtk主题造成的。选择其他gtk主题后(QtCurve不起作用),我再也没有看到崩溃。在KDE上,您可以在系统偏好设置->应用程序外观->GTK上更改这些设置。更改GTK2主题就足够了。

相关内容