3

终于设法从 Windows 中的 rxtx 读取,但现在我无法让它在 Ubuntu 中工作。我使用 apt-get 获取 rxtx 库,但是当我运行应用程序时,我什么都看不到,尝试了几个 try-catch 块而且我什至没有得到异常,并且由于目前无法进行基于 Ubuntu 的调试,因此我无法查明问题所在。(Ubuntu 是 12.04 64 位)。

import gnu.io.*;
import java.io.*;
import javax.swing.JOptionPane;

public class ReadComPort {

    public static void main(String[] s) {
        readcomport();
    }

    public static String readcomport() {
        String value = null;

        try {
            // CommPortIdentifier portIdentifier = CommPortIdentifier
            // .getPortIdentifier("COM1");

            // String comportidentifier = "COM1"; //*win
            String comportidentifier = "/dev/ttyS0";

            CommPortIdentifier portIdentifier = null;
            portIdentifier = CommPortIdentifier.getPortIdentifier(comportidentifier);

            if (portIdentifier.isCurrentlyOwned()) {
                JOptionPane.showMessageDialog(null, "port in use");
            } else {

                SerialPort serialPort = (SerialPort) portIdentifier.open("ReadComPort", 500);
                JOptionPane.showMessageDialog(null, serialPort.getBaudRate());

                serialPort.setSerialPortParams(serialPort.getBaudRate(), SerialPort.DATABITS_8, SerialPort.STOPBITS_1,
                        SerialPort.PARITY_NONE);
                // serialPort.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN | SerialPort.FLOWCONTROL_RTSCTS_OUT);
                serialPort.setDTR(true);
                serialPort.setRTS(true);

                InputStream mInputFromPort = serialPort.getInputStream();

                Thread.sleep(500);
                byte mBytesIn[] = new byte[32];
                mInputFromPort.read(mBytesIn);

                value = new String(mBytesIn);

                mInputFromPort.close();
                serialPort.close();
            }
        } catch (Exception ex) {
            JOptionPane.showMessageDialog(null, "Exception : " + ex.getMessage());

        }

        return value;

    }
}
4

2 回答 2

1

检查配置文件javax.comm.properties是否在类路径中。由于这个文件,我在 RXTX 上遇到了无穷无尽的问题——它只是默默地失败了。

于 2012-05-16T14:40:41.680 回答
1

我昨天遇到了同样的问题,发现了这个

String serialPortID = "/dev/ttyAMA0";
System.setProperty("gnu.io.rxtx.SerialPorts", serialPortID);

即你需要设置gnu.io.rxtx.SerialPorts系统属性,值应该是你要打开的端口的名称。

于 2012-11-12T11:12:16.240 回答