在Java中,可以使用JavaComm或RXTX庫來讀取串口數據。以下是使用RXTX庫的示例代碼:
首先,確保已經安裝了RXTX庫。然后,在Java代碼中導入相關的RXTX類:
import gnu.io.CommPort; import gnu.io.CommPortIdentifier; import gnu.io.SerialPort; import gnu.io.SerialPortEvent; import gnu.io.SerialPortEventListener; import java.io.IOException; import java.io.InputStream;
然后,定義一個類實現SerialPortEventListener接口,以便監聽串口事件:
public class SerialReader implements SerialPortEventListener {????private?InputStream?in;
????public?SerialReader(InputStream?in)?{
????????this.in?=?in;
????}
????public?void?serialEvent(SerialPortEvent?event)?{
????????switch?(event.getEventType())?{
????????????case?SerialPortEvent.DATA_AVAILABLE:
????????????????try?{
????????????????????byte[]?buffer?=?new?byte[in.available()];
????????????????????in.read(buffer);
????????????????????String?data?=?new?String(buffer);
????????????????????System.out.println("Received?data:?"?+?data);
????????????????}?catch?(IOException?e)?{
????????????????????e.printStackTrace();
????????????????}
????????????????break;
????????????//?其他事件處理
????????}
????} }
接下來,在主方法中進行串口的初始化和監聽:
public?static?void?main(String[]?args)?{????try?{
????????CommPortIdentifier?portIdentifier?=?CommPortIdentifier.getPortIdentifier(“/dev/ttyUSB0”);?
????????//?根據實際串口路徑來指定
????????if?(portIdentifier.isCurrentlyOwned())?{
????????????System.out.println(“Error:?Port?is?currently?in?use”);
????????}?else?{
????????????CommPort?commPort?=?portIdentifier.open(“SerialTest”,?2000);
????????????if?(commPort?instanceof?SerialPort)?{
????????????????SerialPort?serialPort?=?(SerialPort)?commPort;
????????????????serialPort.addEventListener(new?SerialReader(serialPort.getInputStream()));
????????????????serialPort.notifyOnDataAvailable(true);
????????????}?else?{
????????????????System.out.println(“Error:?Only?serial?ports?are?supported”);
????????????}
????????}
????}?catch?(Exception?e)?{
????????e.printStackTrace();
????} }
在上述代碼中,"/dev/ttyUSB0"是串口路徑,根據實際情況進行修改。
這樣,當有數據到達串口時,SerialReader的serialEvent方法會被調用,并讀取數據。