raspberryPI ZeroでJavaの開発環境を構築する方法をご紹介します。
1. openJDKのインストール
### 以下のコマンドでopenjdkをインストールします。
$sudo apt install openjdk-8-jdk
2. JDKの選択
どのJavaを使用するか以下のコマンドで指定します。
最初は0が選択されていますが、今回はjdk8を使用したいので2を入力し、Enterを押します。
$update-alternatives --config javac
There are 2 choices for the alternative javac (providing /usr/bin/javac).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/lib/jvm/java-11-openjdk-armhf/bin/javac 1111 auto mode
1 /usr/lib/jvm/java-11-openjdk-armhf/bin/javac 1111 manual mode
2 /usr/lib/jvm/java-8-openjdk-armhf/bin/javac 1081 manual mode
Press <enter> to keep the current choice[*], or type selection number:
3. インストールが成功したか確認
javacコマンドを打つと開発環境ができたのがわかります。
$javac
Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are used
-classpath <path> Specify where to find user class files and annotation processors
-cp <path> Specify where to find user cla