我已经完成了从串口读取字节流的代码。问题是我无法测试代码,因为我没有与这些端口交互的设备..
我已经使用过模拟器但是在运行代码和模拟器时没有任何反应。没有进展也没有错误。
以下是代码
class SimpleRead implements Runnable, SerialPortEventListener{
CommPortIdentifier portId;
Enumeration portList;
InputStream inputStream;
SerialPort serialPort;
Thread readThread;
/**
* Method declaration
*
*
* @param args
*
* @see
*/
public void main(String[] args) {
boolean portFound = false;
String defaultPort = "/dev/term/a";
if (args.length > 0) {
defaultPort = args[0];
}
portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
if (portId.getName().equals(defaultPort)) {
jTextArea1.setText("Found port: "+defaultPort);
portFound = true;
SimpleRead reader = new SimpleRead();
}
}
}
if (!portFound) {
jTextArea1.setText("port " + defaultPort + " not found.");
}
}
/**
* Constructor declaration
*
*
* @see
*/
public SimpleRead() {
try {
serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
} catch (PortInUseException e) {}
try {
inputStream = serialPort.getInputStream();
} catch (IOException e) {}
try {
serialPort.addEventListener(this);
} catch (TooManyListenersException e) {}
serialPort.notifyOnDataAvailable(true);
try {
serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
} catch (UnsupportedCommOperationException e) {}
readThread = new Thread(this);
readThread.start();
}
/**
* Method declaration
*
*
* @see
*/
public void run() {
try {
Thread.sleep(20000);
} catch (InterruptedException e) {}
}
/**
* Method declaration
*
*
* @param event
*
* @see
*/
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);
}
jTextArea1.setText(new String(readBuffer));
} catch (IOException e) {}
break;
}
}
}
注意:我正在使用javax.comm和Netbeans IDE。 谢谢
答案 0 :(得分:2)
问题是我无法测试代码,因为我没有与这些端口交互的设备..
唯一真正的解决方案是获得一些设备。说真的,使用模拟器测试只会让你到目前为止,即使假设模拟器工作。销售或交付未经真实设备测试的代码是完全不负责任的。
答案 1 :(得分:1)
您可以在计算机上的2个串行端口之间放置零调制解调器电缆(交叉电缆),或者如果您只有一个,则从另一台计算机运行电缆。
现在要么创建一个发送程序来通过零调制解调器电缆推送数据,要么使用其他方法来推送数据。例如,在linux中,您可以将文件捕获到串行端口:cat data.dat>的/ dev / ttyS0来
答案 2 :(得分:0)
您必须使用真实设备进行测试,否则测试就毫无价值。只需购买带有串口的PCI卡,就可以获得5美元左右。