所以我试图读取连接到 com 端口的串行设备的数据。现在我弄清楚了阅读部分,但我想知道的是如何识别连接的设备是我的设备还是其他设备,如鼠标或键盘。作为参考,我正在使用 jssc
非常感谢!
下面这个位使用 Jssc 从我的 rfid 阅读器中读取 rfid 标签
public static void main(String[] args) {
SerialPort serialPort = new SerialPort("COM1");
try {
serialPort.openPort();//Open serial port
byte[] buffer = serialPort.readBytes(12);
serialPort.closePort();//Close serial port
}
catch (SerialPortException ex) {
System.out.println(ex);
}
}