从Java中的COM端口读取,错误0x5在.. \ rxtx \ src \ termios.c(892)

时间:2012-05-14 05:49:23

标签: java serial-port rxtx termios

我正在用Java编写一个小应用程序来读取COM端口,因为我们使用64位系统,所以我必须使用RXTX。问题是,当我尝试运行我的应用程序时,我收到以下错误:

  

“错误0x5在.. \ rxtx \ src \ termios.c(892):访问被拒绝”

尝试过我的代码以及来自RXTX网站的code,任何人都有过这方面的经验吗?


这是我的代码:

import gnu.io.CommPort;
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import gnu.io.SerialPortEvent;
import gnu.io.SerialPortEventListener;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * This version of the TwoWaySerialComm example makes use of the 
 * SerialPortEventListener to avoid polling.
 *
 */
public class TwoWaySerialComm
{
    public TwoWaySerialComm()
    {
        super();
    }

    void connect ( String portName ) throws Exception
    {
        CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(portName);
        if ( portIdentifier.isCurrentlyOwned() )
        {
            System.out.println("Error: Port is currently in use");
        }
        else
        {
            CommPort commPort = portIdentifier.open(this.getClass().getName(),2000);

            if ( commPort instanceof SerialPort )
            {
                SerialPort serialPort = (SerialPort) commPort;
                serialPort.setSerialPortParams(9600,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);

                InputStream in = serialPort.getInputStream();
//                OutputStream out = serialPort.getOutputStream();
//                               
//                (new Thread(new SerialWriter(out))).start();

                serialPort.addEventListener(new SerialReader(in));
                serialPort.notifyOnDataAvailable(true);

            }
            else
            {
                System.out.println("Not a serial port...");
            }
        }     
    }

    public static class SerialReader implements SerialPortEventListener 
    {
        private InputStream in;
        private byte[] buffer = new byte[1024];

        public SerialReader ( InputStream in )
        {
            this.in = in;
        }

        public void serialEvent(SerialPortEvent arg0) {
            int data;

            try
            {
                int len = 0;
                while ( ( data = in.read()) > -1 )
                {
                    if ( data == '\n' ) {
                        break;
                    }
                    buffer[len++] = (byte) data;
                }
                System.out.print("Result="+new String(buffer,0,len));
            }
            catch ( IOException e )
            {
                e.printStackTrace();
                System.exit(-1);
            }             
        }

    }

    public static void main ( String[] args )
    {
        try
        {
            (new TwoWaySerialComm()).connect("COM1");
        }
        catch ( Exception e )
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

3 个答案:

答案 0 :(得分:5)

我遇到了这个问题,因为端口 实际上正在使用中。先前的javaw.exe实例出现在Windows任务管理器中,它占用了端口。

Java进程在CommPortIdentifier中挂起的原因是硬件问题:将我碰巧使用的USB-2串行转换器插入USB2端口时,一切正常。当插入USB-3端口时,CommPortIdentifier代码将挂起,然后Java的后续实例收到termios.c:Access Denied错误。

答案 1 :(得分:1)

这个shell命令在Android中得到了帮助(stty需要busybox):

su
chmod 666 /dev/ttyO2
stty -F /dev/ttyO2 speed 115200

答案 2 :(得分:-5)

我使用过rxtx api,工作正常。