我尝试使用以下方法创建服务:
LocalDevice localDevice = LocalDevice.getLocalDevice();
localDevice.setDiscoverable(DiscoveryAgent.GIAC);
String url = "btl2cap://localhost:"+uuid.toString()+";name="+name+";authorize=true;authenticate=true;encrypt=true";
L2CAPConnectionNotifier notifier = (L2CAPConnectionNotifier)Connector.open(url);
ServiceRecord = localDevice.getRecord(notifier);
// Set some attributes
// ...
conn = notifier.acceptAndOpen();
//...
我在诺基亚5800和诺基亚2760上运行此代码,5800我可以看到2760,但反之亦然,我不知道是什么问题,我认为安全问题......
有什么想法吗?
谢谢!
答案 0 :(得分:0)
问题出在搜索中,设备抛出了BluetoothStateException,显示“Busy”。我发现的解决方案是在deviceSearch和serviceSearch之间引入延迟。