我正在使用 RXTX 从串行端口读取数据。读取是在以下列方式产生的线程内完成的:
CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(port);
CommPort comm = portIdentifier.open("Whatever", 2000);
SerialPort serial = (SerialPort)comm;
...settings
Thread t = new Thread(new SerialReader(serial.getInputStream()));
t.start();
SerialReader 类实现 Runnable 并且只是无限循环,从端口读取数据并将数据构造成有用的包,然后再将其发送到其他应用程序。但是,我已将其简化为以下简单性:
public void run() {
ReadableByteChannel byteChan = Channels.newChannel(in); //in = InputStream passed to SerialReader
ByteBuffer buffer = ByteBuffer.allocate(100);
while (true) {
try {
byteChan.read(buffer);
} catch (Exception e) {
System.out.println(e);
}
}
}
当用户单击停止按钮时,会触发以下功能,理论上应该关闭输入流并打破阻塞的 byteChan.read(buffer) 调用。代码如下:
public void stop() {
t.interrupt();
serial.close();
}
但是,当我运行此代码时,我永远不会收到 ClosedByInterruptException,一旦输入流关闭,它应该触发。此外,在调用 serial.close() 时执行会阻塞——因为底层输入流仍然阻塞在 read 调用上。我尝试用 byteChan.close() 替换中断调用,这应该会导致 AsynchronousCloseException,但是,我得到了相同的结果。
对我所缺少的任何帮助将不胜感激。