无法从Java中的COM端口读取串行数据

时间:2016-06-23 11:01:58

标签: java linux serial-port java-8 ubuntu-12.10

我正在尝试读取我在Java上开发的Java应用程序的串行数据(Ubuntu 12.10)。这是我的代码:

try {
    portId = CommPortIdentifier.getPortIdentifier("/dev/ttyS0");
    SimpleRead reader = new SimpleRead();
} catch (Exception e) {
    TimeStamp=new Date().toString();
    System.out.println(TimeStamp+": ttyS0 "+portId);
    System.out.println(TimeStamp+": msg1 - "+e);
}

SimpleRead构造函数和其他必需代码:

public SimpleRead() {
    try {
        TimeStamp=new Date().toString();
        serialPort = (SerialPort) portId.open("SimpleRead", 2000);
        System.out.println(TimeStamp + ": " + portId.getName() + " opened for scanner input");
    } catch (PortInUseException e) {
        System.out.println(e);
    }
    try {
        inputStream = serialPort.getInputStream();
    } catch (IOException e) {
        System.out.println(e);
    }
    System.out.println("Input Stream set");
    try {
        serialPort.addEventListener(this);
    } catch (TooManyListenersException e) {
        System.out.println(e);
    }
    System.out.println("Event listener added");
    serialPort.notifyOnDataAvailable(true);
    try {
        serialPort.setSerialPortParams(9600,
                SerialPort.DATABITS_8,
                SerialPort.STOPBITS_1,
                SerialPort.PARITY_NONE);
        serialPort.setDTR(false);
        serialPort.setRTS(false);
    } catch (UnsupportedCommOperationException e) {
        System.out.println(e);
    }
    System.out.println("Parameters written");
    readThread = new Thread(this);
    readThread.start();
}

@Override
public void run() {
    try {
        Thread.sleep(100);
    } catch (InterruptedException e) {
        System.out.println(e);
    }
}

@Override
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:
            System.out.println("Hello");
            break;
        case SerialPortEvent.DATA_AVAILABLE:
            byte[] readBuffer = new byte[20];
            System.out.println("Hello");
            try {
                while (inputStream.available() > 0) {
                    int numBytes = inputStream.read(readBuffer);
                    if (numBytes>=16)
                        break;
                }
                //System.out.print(new String(readBuffer));
                TimeStamp = new java.util.Date().toString();
                System.out.println(TimeStamp + ": scanned input received:" + new String(readBuffer));
                inputStream.close();
            } catch (IOException e) {
                System.out.println(e);
            }
            break;
    }
}

由于某种原因,没有从端口读取串行数据,因为" Hello"在serialEvent()方法的主体中未在输出屏幕中打印。请帮帮我吧!

编辑代码取自:http://www.java-samples.com/showtutorial.php?tutorialid=11 是的,在尝试从中读取之前,设备已针对给定参数进行了配置。

新编辑我正在使用适用于Linux x64平台的Java SE 8开发工具包,以及来自http://www.java2s.com/Code/Jar/c/Downloadcomm20jar.htm的Java Communications API。我的IDE是Netbeans 8.1。

1 个答案:

答案 0 :(得分:0)

事实证明,我必须使用32位版本的Java 1.8来访问串行端口。我的Linux上的IDE不会接受64位机器上的32位库,即使被迫(通过更改netbeans.conf文件中的“jdk_home”路径),因此我在访问串口时遇到问题。 / p>

我将操作系统切换到Windows 7,虽然我仍然使用64位系统,因为Windows上的Netbeans IDE 8.1可以使用相应的源库在64位和32位模式下运行。所以我为Windows安装了JDK 1.8(32位),然后在引用Javax.comm API on 64-bit Windows之后在IDE中运行我的代码以使其工作。现在,可以正确读取串口数据。