- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用此关闭 Comm 端口:
public synchronized void closeComportButtonActionPerformed(
java.awt.event.ActionEvent evt) {
try {
twoWaySerCom.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
我的脱节是这样的:
void disconnect() throws Exception {
if (serialPort != null) {
InputStream in = serialPort.getInputStream();
OutputStream out = serialPort.getOutputStream();
try {
// close the i/o streams.
in.close();
out.close();
} catch (IOException ex) {
// don't care
}
// Close the port.
serialPort.close();
}
当我按下关闭按钮时,我的应用程序只是卡住,最终我在控制台中收到一条错误消息:
A fatal error has been detected by the Java Runtime Environment:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00949e69, pid=7568, tid=4724
#
# JRE version: Java(TM) SE Runtime Environment (8.0_25-b18) (build 1.8.0_25-b18)
# Java VM: Java HotSpot(TM) Client VM (25.25-b02 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [rxtxSerial.dll+0x9e69]
谁能解释一下我在这里做错了什么?谢谢
最佳答案
if(portInUse!=null)
{
try{
portInUse.port = (SerialPort)portInUse.portId.open(this.getClass().getName(),TIME_OUT);
portInUse.port.setSerialPortParams(baudRate,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);
comConn=this.COM_CONNECTED;
}
portInUse.input = new BufferedReader(
newInputStreamReader(portInUse.port.getInputStream())
);
portInUse.output = portInUse.port.getOutputStream();
//adding listeners to input and output streams
portInUse.port.addEventListener(this);
portInUse.port.notifyOnDataAvailable(true);
portInUse.port.notifyOnOutputEmpty(true);
currentPort=portInUse;
}
portInUse 的数据类型:
private class CustomPort
{
String portName;
CommPortIdentifier portId;
SerialPort port;
BufferedReader input;
OutputStream output;
Scanner inputName;
}
CustomPort currentPort=new CustomPort();
以及我使用的冲洗功能:
public void flush()
{
try {
this.currentPort.output.flush();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我使用的关闭函数:
public void close(){
if(currentPort.port!=null){
currentPort.port.close(); //close serial port
currentPort.input = null; //close input and output streams
currentPort.output = null;
}
}
如何关闭端口:
this.flush();
this.close();
反复测试了很多次,效果很好。
关于java - 我如何关闭 RXTX 中的 CommPort,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28766941/
RXTX网站http://rxtx.qbang.org/wiki/index.php/Download已经下降了一段时间。您知道下载适用于 windows、linux 和 raspberry pi 的
我正在尝试使用 RXTX API 通过 Java Marine API 从 NMEA 0183 GPS 获取 GPS 数据。 运行 Java Marine 提供的 SerialPortExample.
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
我使用的是 Windows 7 64 位。我编写了一个小应用程序,它使用 RXTX 通过串行端口进行通信。我在 Windows 64 位上使用了 rxtxSerial.dll,它在 Eclispe 和
让我直接进入问题。 比方说,我有一个 Arduino Uno (COM4) 和 Arduino Mega (COM5),它们都通过串行端口与我的操作系统通信。我怎样才能检测到 COM4 真的是一个 A
我正在尝试编写的 Java 串行读取器遇到问题,问题似乎在于 inputstream 方法...... 我的 readSerial() 方法出现错误,它给出错误“无法从类型 InputStream 对
我有一个内置于 netbeans 的 java 程序,它使用 Here 中的 RXTX 。到目前为止,它在 Windows 和 Linux 上都运行得很好。 我的问题:是否可以将所需的 RXTX 文件
我从 RXTX 网站编辑了一个已经制作好的示例。我也是 Java 和串行通信编程的新手。 该应用程序完美运行了一次。它从 PIC 读取缓冲区并发送我输入的数字。 LED 亮起,PIC 发回相同的缓冲区
我正在尝试制作一个 Java 接口(interface)来向 GPRS 模块发送一些 AT 命令。 我已经有了一个关于Processing的工作界面,但我迁移到纯Java,因为我发现制作图形界面更容易
我正在尝试使用 RXTX java 库通过 GUI 中的单击监听器发送字符串,但我无法编辑 RXTX 的代码来发送字符串,它只响应来自控制台的输入,那么我如何编辑代码以不仅发送从控制台输入的数据? 我
我正在使用 RXTX 在 JAVA 和微 Controller 之间进行通信。 这是打开连接、发送和接收数据的JAVA代码 package app; import gnu.io.CommPort; i
我已经使用 RXTX 大约一年了,没有遇到太多问题。我刚刚启动了一个新程序来与新硬件进行交互,所以我重新使用了我在其他项目中使用过的 connect() 方法,但是我遇到了一个以前从未见过的奇怪问题。
在试图找出 this problem 时(感谢任何帮助),我在运行 RXTX 的同时使用 PortMon 监控其 Activity 并注意到 RXTX 不断检查数据是否可用,即使 Java 客户端仅通
我找到了一个通过串行端口在 Java 中与 Arduino 进行通信的代码,并想尝试让它工作以扩展它以实现项目创意,但我不断收到此错误 Stable Library =================
在将 RXTX 用于许多不同的项目之后,我遇到了许多恼人的差异和问题,这些问题只能归结为库中的错误 - 死锁、竞争危险和 RXTX 库深处的监控线程被保持打开状态以防止程序关闭(即使我使用的所有端口都
我正在尝试运行此函数,并得到带有文本的配置 gnu.io.rxtx.properties 窗口:尚未检测到 gnu.io.rxtx.properties。 没有一致的方法来检测此操作系统上的端口。在进
这是我的代码,我正在使用 rxtx 。 public void Send(byte[] bytDatos) throws IOException { this.out.write(by
我目前正在开发一个项目,该项目需要与连接在通讯端口上的设备进行通信。我下面有一个函数,它搜索串行端口,将它们添加到 HashMap ,然后返回 HashMap 。我注意到一个问题,每当我尝试从 Has
我正在尝试编写一个程序,让 Arduino Uno 通过串行端口与 Java 程序通信。我按照此处的说明进行操作 ( http://playground.arduino.cc/Interfacing/
我在 Windows 上使用 RXTX 2.1-7,但遇到一个问题。每当我使用 RXTX 库运行程序时,都会打印以下通用版本控制信息: 稳定库 ============================
我是一名优秀的程序员,十分优秀!