java rs232_通过JAVA与串口(RS232)通信实例
时间: 2024-04-29 19:22:02 浏览: 209
下面是一个简单的Java程序,可以通过串口(RS232)与设备进行通信。在这个程序中,我们使用了Java Communications API来实现串口通信。
```java
import java.io.*;
import java.util.*;
import javax.comm.*;
public class RS232Example implements Runnable, SerialPortEventListener {
static CommPortIdentifier portId;
static Enumeration portList;
InputStream inputStream;
OutputStream outputStream;
SerialPort serialPort;
Thread readThread;
public static void main(String[] args) {
portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
if (portId.getName().equals("COM1")) { // 修改为你的串口号
RS232Example reader = new RS232Example();
}
}
}
}
public RS232Example() {
try {
serialPort = (SerialPort) portId.open("RS232Example", 2000);
inputStream = serialPort.getInputStream();
outputStream = serialPort.getOutputStream();
serialPort.addEventListener(this);
serialPort.notifyOnDataAvailable(true);
serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
readThread = new Thread(this);
readThread.start();
} catch (Exception e) {
e.printStackTrace();
}
}
public void run() {
try {
Thread.sleep(20000); // 等待20秒
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public void serialEvent(SerialPortEvent event) {
switch (event.getEventType()) {
case SerialPortEvent.BI:
case SerialPortEvent.OE:
case SerialPortEvent.FE:
case SerialPortEvent.PE:
case SerialPortEvent.CD:
case SerialPortEvent.CTS:
case SerialPortEvent.DSR:
case SerialPortEvent.RI:
case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
break;
case SerialPortEvent.DATA_AVAILABLE:
byte[] readBuffer = new byte[20];
try {
while (inputStream.available() > 0) {
int numBytes = inputStream.read(readBuffer);
}
System.out.print(new String(readBuffer));
} catch (IOException e) {
e.printStackTrace();
}
break;
}
}
}
```
这个程序执行后,会打开COM1串口(如果存在),并等待20秒钟。当串口接收到数据时,程序会将数据读取并输出到控制台。
你需要将代码中的“COM1”修改为你实际使用的串口号。另外,你还需要下载并安装Java Communications API,以便程序可以正常使用串口。
阅读全文