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

标签 android bluetooth connection rfcomm

我正在开发基于 BluetoothChat exemple 的 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 的蓝牙堆栈有问题吗?是否有人可能使用另一部 Android 手机建立了连接?

最佳答案

我认为您的代码有问题,不应该是 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

关于android - BluetoothServerSocket.accept() 即使设备已配对也不会返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9228700/

相关文章:

android - 在 OpenGL ES 中翻转 Y 轴?

Android AlertDialog 在 bluetoothsocket.connect() 之后才会显示

javascript - IOS 蓝牙键盘 - 输入 - Tab 事件

objective-c - ObjCMongoDB 是否支持 SSL 连接?

java - C 服务器代码 - Java 客户端代码 TCP 连接问题

安卓 : Reading NFC tag in service class

android - 如何将 Android 文本框设置为仅占 XML 总宽度的 60%?

javascript - 打开应用程序时自动启用蓝牙可发现性?

PHP: Mysql 连接

java - agora.io 错误访问拒绝找到属性 net.dns2