Android bluetoothSocket连接错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android bluetoothSocket连接错误相关的知识,希望对你有一定的参考价值。

我试图通过蓝牙从android设备连接到HC-06。在使用之前我设法让它工作:

bluetoothSocket = (BluetoothSocket) bluetoothDevice.getClass().getMethod("createRfcommSocket", new Class[] {int.class}).invoke(this.bluetoothDevice,1);

问题是它只能工作一次。当我断开并关闭输入和输出流然后关闭套接字,然后尝试重新连接它给我这个错误:

D/BluetoothSocket: connect(), SocketState: INIT, mPfd: {ParcelFileDescriptor: FileDescriptor[55]}
D/BluetoothSocket: close() in, this: android.bluetooth.BluetoothSocket@2d5fa8b, channel: 1, state: INIT
D/BluetoothSocket: close() this: android.bluetooth.BluetoothSocket@2d5fa8b, channel: 1, mSocketIS: android.net.LocalSocketImpl$SocketInputStream@39f43768, mSocketOS: android.net.LocalSocketImpl$SocketOutputStream@184d7781mSocket: android.net.LocalSocket@222b6026 impl:android.net.LocalSocketImpl@727b467 fd:FileDescriptor[55]
D/BluetoothSocket: Closing mSocket: android.net.LocalSocket@222b6026 impl:android.net.LocalSocketImpl@727b467 fd:FileDescriptor[55]
W/System.err: java.io.IOException: read failed, socket might closed or timeout, read ret: -1
W/System.err:     at android.bluetooth.BluetoothSocket.readAll(BluetoothSocket.java:739)
W/System.err:     at android.bluetooth.BluetoothSocket.waitSocketSignal(BluetoothSocket.java:716)
W/System.err:     at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:482)
W/System.err:     at com.example.work.dmm.clientBluetoothConnection.run(clientBluetoothConnection.java:65)

我试图搜索问题并发现各种帖子说应该使用createRfcommSocketToServiceRecord()。我尝试过这个:

ParcelUuid[] uuids = bluetoothDevice.getUuids();
UUID uuid = uuids[0].getUuid();
bluetoothSocket = bluetoothDevice.createRfcommSocketToServiceRecord(uuid);

但这根本不起作用。我不知道从哪里去,所以任何帮助表示赞赏。

答案

断开连接然后重新连接也有同样的问题我得到一个错误,但在我的情况下有一个广播接收器接收蓝牙适配器重新打开时的动作。这是破坏适配器完全重新开启的原因所以我删除了那部分代码并且它工作...在断开连接后重新连接它工作正常。

以上是关于Android bluetoothSocket连接错误的主要内容,如果未能解决你的问题,请参考以下文章

在 Android 中的 BluetoothSocket inputstream.read() 中实现超时

Android-蓝牙传输

Android7蓝牙连接失败,蓝牙设备连接失败,只有首次运行能连接成功??

[android] socket在手机上的应用

Android怎么检测蓝牙的连接状态?如果一段断开,我这边怎么检测得到?

Android蓝牙开发——实现蓝牙聊天