我试图模仿吉利德(这里)的成功,但到目前为止他在我的应用程序中的代码失败了。我尝试了多个 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!");
...
}