2

我试图模仿吉利德(这里)的成功,但到目前为止他在我的应用程序中的代码失败了。我尝试了多个 UUID,但没有任何效果。当我跑步时,sdptool records [address]我得到:

$ sdptool records 00:12:F3:04:80:80
sdptool records 00:12:F3:04:80:80
Service Name: SPP
Service RecHandle: 0x10001
Service Class ID List:
"Serial Port" (0x1101)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 1
Failed to connect to SDP server on 00:12:F3:04:80:80: Connection timed out

它显示设备在通道 1 上,所以我不明白为什么代码不起作用。我正在运行 Android 2.1。我无法以任何方式访问其他设备,并且在调试 tmpsock 之前具有所有正确的值.connect()调用之前具有所有正确的值。

我的代码

public void test(BluetoothDevice d) throws Exception
{
 BluetoothSocket tmpsock = null;
 OutputStream out = null;
 InputStream in = null;
 int port = 1;
 Method m = d.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
 tmpsock = (BluetoothSocket)m.invoke(d, port);
 Log.d("BT", "CONNECTING!!!!");
 tmpsock.connect();
 Log.d("BT", "CONNECTED!");
    ...
}
4

1 回答 1

2

根据BluetoothDevice createRfcommSocketToServiceRecord

如果您要连接到蓝牙串行板,请尝试使用众所周知的 SPP UUID 00001101-0000-1000-8000-00805F9B34FB。

于 2011-08-30T18:02:39.557 回答