1

好吧,在 StackOverflow 上已经有很多关于如何将远程蓝牙设备与 android 配对和连接的问题。我已经尝试了所有这些,没有找到任何有关与远程设备配对的正确链接或文档。

另外关于我尝试以编程方式将笔记本电脑与android连接,但出现以下错误:

java.io.IOException: Service discovery failed
at android.bluetooth.BluetoothSocket$SdpHelper.doSdp(BluetoothSocket.java:395)
at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:209)

连接 android 设备有很多参考资料,我遵循的是这个。但在我的情况下它不起作用。我正在尝试连接我的 vaio 笔记本电脑,并且我有三星 Galaxy S 安卓设备。

如果有人知道如何以编程方式配对和连接设备,请告诉我解决方案。

4

1 回答 1

1

如果服务器实际上不可发现,您的客户端将永远不会发现服务器。您的服务器代码的注释说“确保它可发现的设备”,但在套接字上侦听并不意味着该设备是可发现的。您可以通过调用使服务器可发现:

Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivity(discoverableIntent);

这在 Android 开发指南中有详细介绍:http: //developer.android.com/guide/topics/wireless/bluetooth.html

您的应用程序必须在清单文件中具有以下蓝牙权限:

android.permission.BLUETOOTH_ADMIN
android.permission.BLUETOOTH
于 2012-04-15T13:23:35.173 回答