共计 811 个字符,预计需要花费 3 分钟才能阅读完成。
要向串口发送数据,可以使用 Java 的 javax.comm 库。以下是一个示例代码,演示如何向串口发送数据:
import java.io.OutputStream;
import java.util.Enumeration;
import javax.comm.CommPortIdentifier;
import javax.comm.SerialPort;
public class SerialPortExample {public static void main(String[] args) {String portName = "COM1"; // 串口名称
int baudRate = 9600; // 波特率
try {CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier(portName);
SerialPort serialPort = (SerialPort) portId.open("SerialPortExample", 2000);
serialPort.setSerialPortParams(baudRate, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
OutputStream outputStream = serialPort.getOutputStream();
String data = "Hello, World!"; // 要发送的数据
outputStream.write(data.getBytes());
outputStream.close();
serialPort.close();} catch (Exception e) {e.printStackTrace();
}
}
}
请注意,此示例假设您已经安装并配置了 javax.comm 库,并且已正确设置了串口的名称和波特率。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-13