6

COMポートから読み取る小さなアプリを Java で作成しています。64 ビット システムを使用しているため、RXTX を使用する必要がありました。問題は、アプリを実行しようとすると、次のエラーが発生することです。

「エラー 0x5 at ..\rxtx\src\termios.c(892):アクセスが拒否されました」

私のコードと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:AccessDeniedエラーを受け取りました。

于 2012-07-05T15:21:24.917 に答える
1

このシェル コマンドは、Android で役に立ちました (stty には busybox が必要です)。

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

私はrxtxapiを使用していて、問題なく動作しました。

于 2012-05-14T06:02:39.810 に答える