このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン | ||
mae3xx_devel:java_serial_programming:start [2014/04/24 10:40] – admin | mae3xx_devel:java_serial_programming:start [2014/09/04 16:18] (現在) – admin | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ====== シリアルポート通信のプログラミング (Java) ====== | ||
+ | |||
+ | Java SEでシリアルポートを扱うためには、Java CommAPI に準拠した追加のライブラリ " | ||
+ | |||
+ | * [[https:// | ||
+ | * [[http:// | ||
+ | |||
+ | ※ 『[[mae3xx_tips: | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== RXTXcomm のインストール ===== | ||
+ | |||
+ | Ubuntu Linuxには、標準でパッケージが用意されていますので、それを導入します。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | librxtx-java - Full Java CommAPI implementation | ||
+ | librxtx-java-dbg - Full Java CommAPI implementation, | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | " | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | Reading package lists... Done | ||
+ | Building dependency tree | ||
+ | Reading state information... Done | ||
+ | The following NEW packages will be installed: | ||
+ | librxtx-java | ||
+ | 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. | ||
+ | Need to get 185 kB of archives. | ||
+ | After this operation, 884 kB of additional disk space will be used. | ||
+ | Get:1 http:// | ||
+ | Fetched 185 kB in 1s (104 kB/s) | ||
+ | Selecting previously unselected package librxtx-java. | ||
+ | (Reading database ... 17679 files and directories currently installed.) | ||
+ | Preparing to unpack .../ | ||
+ | Unpacking librxtx-java (2.2pre2-11) ... | ||
+ | Setting up librxtx-java (2.2pre2-11) ... | ||
+ | Processing triggers for libc-bin (2.19-0ubuntu6) ... | ||
+ | localepurge: | ||
+ | localepurge: | ||
+ | |||
+ | Total disk space freed by localepurge: | ||
+ | |||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | どこにライブラリが導入されたか、確認してみます。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | * classpath に / | ||
+ | * java.library.path に / | ||
+ | |||
+ | をそれぞれ指定すれば動作しそうです。 | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== 実行 ===== | ||
+ | |||
+ | [[http:// | ||
+ | |||
+ | <file java Test.java> | ||
+ | import gnu.io.CommPortIdentifier; | ||
+ | import java.util.Enumeration; | ||
+ | |||
+ | public class Test { | ||
+ | public static void main(String[] args) { | ||
+ | System.out.println(" | ||
+ | try { | ||
+ | Enumeration portList = CommPortIdentifier.getPortIdentifiers(); | ||
+ | CommPortIdentifier port = null; | ||
+ | while (portList.hasMoreElements()) { | ||
+ | port = (CommPortIdentifier)portList.nextElement(); | ||
+ | System.out.println(port.getName()); | ||
+ | } | ||
+ | } catch(Exception e) { | ||
+ | e.printStackTrace(); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | JDK の入ったマシンで .class ファイルを作成し、実機へ転送してから実行します。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | main method start. | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | 動作はしているようですが、シリアルポート (ttyO0/ | ||
+ | RXTXcomm ライブラリで " | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | -rw-r--r-- 1 user1 user1 100048 Apr 24 10:00 librxtx-java-dbg_2.2pre2-11mae1_armhf.deb | ||
+ | -rw-r--r-- 1 user1 user1 167170 Apr 24 10:00 librxtx-java_2.2pre2-11mae1_armhf.deb | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | これをインストールします。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | (Reading database ... 17751 files and directories currently installed.) | ||
+ | Preparing to unpack librxtx-java_2.2pre2-11mae1_armhf.deb ... | ||
+ | Unpacking librxtx-java (2.2pre2-11mae1) over (2.2pre2-11) ... | ||
+ | Setting up librxtx-java (2.2pre2-11mae1) ... | ||
+ | Processing triggers for libc-bin (2.19-0ubuntu6) ... | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ふたたび、サンプルを実行してみます。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | main method start. | ||
+ | /dev/ttyO2 | ||
+ | /dev/ttyO1 | ||
+ | /dev/ttyO0 | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | こんどは ttyO0/ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== ダウンロード ===== | ||
+ | |||
+ | ^ File ^ Stat ^ SHA1SUM | ||
+ | |{{: | ||
+ | |{{: | ||