6

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

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

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


这是我的代码:

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();
        }
    }
}
4

3 回答 3

5

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

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

于 2012-07-05T15:21:24.917 回答
1

这个shell命令在Android中对我有帮助(stty需要busybox):

su
chmod 666 /dev/ttyO2
stty -F /dev/ttyO2 speed 115200
于 2016-12-05T19:55:12.810 回答
-5

我使用了 rxtx api,并且工作正常。

于 2012-05-14T06:02:39.810 回答