web-dev-qa-db-ja.com

netbeansはプロジェクトウィンドウを表示しません

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=17.04
DISTRIB_CODENAME=zesty
DISTRIB_DESCRIPTION="Ubuntu 17.04"

$ Java -version
Java version "9"
Java(TM) SE Runtime Environment (build 9+181)
Java HotSpot(TM) 64-Bit Server VM (build 9+181, mixed mode)

$ javac -version
javac 9
$ umake --version
16.11.1

$ umake ide netbeans
[Sudo] password for thufir: 
Choose installation path: /home/thufir/.local/share/umake/ide/netbeans
Downloading and installing requirements                                                    |
100% |#####################################################################################|
Installing Netbeans
|##########################################################################################|
Installation done

$ netbeans
The program 'netbeans' is currently not installed. You can install it by typing:
Sudo apt install netbeans

notifications

おそらく関連する:

$ /home/thufir/.local/share/umake/bin/netbeans 
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.netbeans.ProxyURLStreamHandlerFactory (file:/home/thufir/.local/share/umake/ide/netbeans/platform/lib/boot.jar) to field Java.net.URL.handler
WARNING: Please consider reporting this to the maintainers of org.netbeans.ProxyURLStreamHandlerFactory
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
^C

clean インストールの前に表示されていたエラーです。

(おそらく このエラー に関連しているか、少なくとも類似しています。)

2
Thufir

Netbeans 8.2はOracle JDK 8でのみ動作しますが、JDK 9では動作しません。まったく同じ問題がありました。 (Netbeans 9はJDK9で動作すると思いますが、まだリリースされていません。)

3
Mathias Conradt