即使设备已配对,BluetoothServerSocket.accept()也不会返回



我正在开发一个基于BluetoothChat示例的Android蓝牙应用程序。我正在启动一个蓝牙服务器,并在一个不安全的rfcomm连接上监听一个设备(而不是手机)来连接我的应用程序。

private class AcceptThread extends Thread {
    // The local server socket
    private final BluetoothServerSocket mmServerSocket;
    public AcceptThread(boolean secure) {
        BluetoothServerSocket tmp = null;
        // Create a new listening server socket
        try {
            tmp = mAdapter.listenUsingInsecureRfcommWithServiceRecord(mServiceName, MY_UUID_INSECURE);
        } catch (Exception e) {
            Log.e(TAG, ".AcceptThread # listen() failed", e);
        } 
        mmServerSocket = tmp;
    }
    public void run() {
        BluetoothSocket socket = null;
        // Listen to the server socket if we're not connected
        while (mState != STATE_CONNECTED) {
            try {
                // This is a blocking call and will only return on a
                // successful connection or an exception
                Log.d(TAG, ".AcceptThread.run # ...accepting server socket conn");
                socket = mmServerSocket.accept(); //FIXME: it blocks here
                Log.d(TAG, ".AcceptThread.run # server socket connection accepted");
            } catch (Exception e) {
                MMLog.e(TAG, ".run # accept() failed: "+e);
                connectionFailed();
                break;
            }
            // If a connection was accepted
            if (socket != null) {
                synchronized (BluetoothService.this) {
                    switch (mState) {
                    case STATE_LISTEN:
                    case STATE_CONNECTING:
                        // starting the thread where i will receive input
                        // streams from the other device
                        connected(socket, socket.getRemoteDevice());
                        break;
                    case STATE_NONE:
                    case STATE_CONNECTED:
                        // Either not ready or already connected. Terminate new socket.
                        try {
                            socket.close();
                        } catch (IOException e) {
                            Log.e(TAG, "Could not close unwanted socket", e);
                        }
                        break;
                    }
                }
            }
        }
    }
    public void cancel() {
        try {
            if(mmServerSocket != null) {
                mmServerSocket.close();
            }
        } catch (IOException e) {
            Log.e(TAG, ".cancel # Could not close server socket: ", e);
        }
    }
}

我使用的是HTC Desire S,安卓2.3.5。设备已配对,但我没有收到数据,因为连接在".accept()"方法中被阻止。它只是一直在等待。

socket = mmServerSocket.accept();//。。。和等待

  • 如果设备已配对,为什么它仍在等待
  • 我该如何建立联系,因为我也尝试过反思,但仍然没有结果
  • HTC的蓝牙堆栈有问题吗?有人可能使用另一部安卓手机建立了连接吗

我认为您的代码有问题,不应该是socket = tmp.accept();吗?以下是我必须进行的套接字服务器连接:

BluetoothServerSocket serverSocket = null;
BluetoothAdapter bta = BluetoothAdapter.getDefaultAdapter();
try {
    serverSocket = bta.listenUsingInsecureRfcommWithServiceRecord("BluetoothChatInsecure", UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));
} catch (IOException e) { e.printStackTrace(); }
while(!Thread.interrupted()) {
    try {
        socket = serverSocket.accept();
        if (socket != null) {
            Log.d("CONNECTED", "Connected bluetooth");
        /// do your stuff

很可能,这与您的其他设备有关(这发生在我身上)。你的安卓系统已经完成了它的工作,即列出传入连接。你的特殊设备无法正确启动与安卓手机的连接有很多原因:

  • 设备神秘地切换到其他蓝牙配置文件,例如HDP而不是SPP
  • 该设备以某种方式在内存中记住了另一部安卓手机(它上次连接到的手机或类似的手机),并一直试图连接到该手机,但不是你现在使用的手机

我想你最好的机会是向特殊设备的制造商/销售商查询详细的规格和/或配置/测试它的软件/驱动程序。

相关内容

  • 没有找到相关文章

最新更新