2

我正在使用 COM 端口。我成功打开了 COM 端口并完成了所有工作。关闭 COM 端口时发生崩溃。代码是

public void close()
    throws GPSException
  {
    if (serial_port_ != null)
      serial_port_.close();
  }

错误

#
> # An unexpected error has been detected by Java Runtime Environment:
> #
> #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x04049e69, pid=5692,
> tid=4100
> #
> # Java VM: Java HotSpot(TM) Client VM (10.0-b19 mixed mode, sharing
> windows-x86)
> # Problematic frame:
> # C  [rxtxSerial.dll+0x9e69]
> #
> # If you would like to submit a bug report, please visit:
> #   http://java.sun.com/webapps/bugreport/crash.jsp
> # The crash happened outside the Java Virtual Machine in native code.
> # See problematic frame for where to report the bug.
4

2 回答 2

1

我设法找到了一个似乎可以解决问题的解决方案 - 似乎输入和输出流在串行端口之前没有完全关闭,因为它们在自己的线程中运行并且正在被自己的线程所困扰数据。这可以通过添加同步互斥锁来解决,该互斥锁确保在关闭串行端口之前已正确清理这些线程。

在我的 SerialConnection 类中,我添加了布尔字段 stopRead 和 stopWrite,以分别指示 InputStream 和 OutputStream 线程何时应该停止侦听。我还添加了互斥体 stopReadMutex 和 stopWriteMutex 以在主线程和读/写线程之间同步这些值。他们循环的每次迭代,读写器检查 stopRead 和 stopWrite 布尔值并打破他们的循环。

当我的断开函数被调用时,我使用互斥体来更改 stopRead 和 stopWrite 值,然后再调用相应线程和 serialPort 的关闭函数,如下所示:

public void disconnect(){
    try {
        synchronized(stopReadMutex)
        {stopRead = true;}
        synchronized(stopWriteMutex)
        {stopWrite = true;}

        portOut.close();
        portIn.close();
        serialPort.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

此外,如果有人想仔细查看,这里是相关源代码的链接。 http://pastebin.com/C4Fy8mLZ

于 2012-05-31T00:20:44.513 回答
0

该错误是由于线程冲突造成的。避免这种情况的最好方法是使所有方法synchronized

public synchronized void disconnect() {
  serialPort.close();
}
于 2012-10-19T10:04:21.733 回答