从 12.04 升级到 12.10 后无法安装 Netbeans

从 12.04 升级到 12.10 后无法安装 Netbeans

这是来自终端的错误消息:

coca@Bakorng:/var/www/shared$ sh netbeans-7.2-ml-php-linux.sh 
Configuring the installer...
Searching for JVM on the system...
Extracting installation data...
Running the installer wizard...
Can`t initialize UI
Running in headless mode

Exception: java.awt.HeadlessException thrown from the UncaughtExceptionHandler in     thread "main"
coca@Bakorng:/var/www/shared$ 

我该如何解决?

答案1

您的报告类似于这个建议直接卸载 OpenJDK 6 并使用最新版本的 OpenJDK 7。

答案2

由于某种原因,sh 安装程序不适用于 openJDK 7。快速修复安装方法是改回 JDK 6。运行:

sudo update-alternatives --config java
(select java 6) 
sh netbeans-7.2.1-ml-linux.sh

安装程序应该运行,然后使用 update-alternatives 切换回 java 7 JDK。

相关内容