0

ボタンにこのコードがあり、それを押すとエラーが発生します:

  Error: Exception connecting to NXT.
  Caused by lejos.pc.comm.NXTCommException: Open of NXT failed.
at lejos.pc.comm.NXTCommBluecove.open(NXTCommBluecove.java:136)
   Caused by javax.bluetooth.BluetoothConnectionException: Failed to connect; [10048]
 Only one usage of each socket address (protocol/network address/port) is normally permitted.
at com.intel.bluetooth.BluetoothStackMicrosoft.connect(Native Method)
Failed to connect to any NXT

昨日は正常に動作していたが、今日は動作していないようなので投稿します。

btnConnectBot.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e) {
            if (Cnt1){
                try {
                    conn.close();
                    Cnt1=!Cnt1;
                    txtConnState.setText("Off");
                    txtConnState.setForeground(Color.RED);
                } catch (IOException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }
            }
            else{   
                conn.addLogListener(new NXTCommLogListener() {
                public void logEvent(String message) {
                System.out.println(message);
                }

                public void logEvent(Throwable throwable) {
                System.err.println(throwable.getMessage());
                }
                });
                conn.setDebug(true);
                if (!conn.connectTo(txtBotName.getText(), NXTComm.LCP)) {
                System.err.println("Fallo de conexión");
                txtConnState.setText("Off");
                txtConnState.setForeground(Color.RED);
                System.exit(1);
                }
                Cnt1=!Cnt1;     
                txtConnState.setText("On");
                txtConnState.setForeground(Color.GREEN);

                if (chckbxLock_2.isSelected()){
                    btnConnectBot_2.doClick();
                }
                if (chckbxLock_1.isSelected()){
                    btnConnectBot_1.doClick();
                }
            }
        }
    });

私の調査によると、これは、使用されている Bluetooth ポートが複数のインスタンスからアクセスされているためです。しかし、このコードでこれがどのように起こるかわかりません。

4

1 に答える 1

0

リモート デバイス用に構成された Bluetooth 仮想 COM ポートがありますか? たぶん、何かのプログラムによって開かれています...

または、プログラムを初めて実行したときにエラーが発生しますか? 実行中のプログラムの古いコピーはありますか -- taskmgr.exe をチェックインします

于 2012-09-06T09:33:38.187 に答える