对于 Android 系统,有谁知道或有人尝试过使用 getScanResult() 来获取 1 个网络名称(SSID)的多个 BSSID?
如果我使用 getScanResult(),我将能够获取有关不同网络的信息,但例如,如果我在一所学校,所有接入点都在网络(SSID)“学校”下。 getScanResult() 是否会过滤掉最接近的接入点以外的其他接入点,并且只返回该网络的 1 个 BSSID?
If I use getScanResult() I will be able to get the information about different networks but for example if I am in a school where all access points are under network(SSID) "The school". Will getScanResult() filter out other access points than the one it's closest to and only return 1 BSSID for that network?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该获取无线电范围内的所有 BSSID 条目,即使它们是相同的 ESSID。 WiFi 驱动程序可能会向您隐藏这一点;但我还没有看到默认设置发生这种情况。
You should get all BSSID entries that are in radio range, even if they are the same ESSID. The WiFi driver could hide this from you; but I haven't seen that happen with default settings.
getScanResults() 将返回所有响应网络。
然而,WifiManager 保存的已知网络列表不区分 BSSID,而仅区分 SSID,因此如果 SSID 匹配,Android 将尝试连接。
getScanResults() will return all responding networks.
However, the list of known networks kept by WifiManager does not distinguish BSSID, but only SSID, so if the SSID matches Android will attempt to connect.