Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为笔记本电脑编写一个安全应用程序,并开始DiscoveryListener在 J2ME 中编写它,但它显示了所有设备类型,如手机。但我希望它只能找到计算机。
DiscoveryListener
对此有任何帮助吗???
无法搜索特定的设备类型。搜索本身将始终找到所有设备类型。
您必须自己过滤掉不需要的设备。当找到设备时,deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)调用。DeviceClass告诉你它是什么类型的设备。所以简单地问。
deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)
DeviceClass
if (cod.getMajorDeviceClass()==0x100) // Yes, it's a computer of some sort.