我可以在 Android 中找到我的接入点的 MAC 地址吗?
我的 Android 应用程序可以找到它所连接的 Wifi 接入点的 MAC 地址吗?
android.net.wifi.WifiInfo getMacAddress() 的文档未提供任何详细信息。
请参阅 http://developer.android.com/reference /android/net/wifi/WifiInfo.html#getMacAddress()。
我假设这是我手机的 Mac 地址。我可以找到接入点的 Mac 地址吗?
Can my Android app find the MAC address of the Wifi access point it is connected to?
The docs for android.net.wifi.WifiInfo getMacAddress() don't provide any details.
See http://developer.android.com/reference/android/net/wifi/WifiInfo.html#getMacAddress().
I'm assuming this is the Mac address of my phone. Can I find the Mac address of the access point?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
getBSSID()
<WifiInfo
类的 /a> 将返回远程接入点的 MAC 地址。BSSID
已在此处进行了解释。getBSSID()
ofWifiInfo
class will return MAC address of remote access point.BSSID
explained here.以下方法将返回接入点的 MAC 地址,如果当前没有连接网络,则返回 null。
The following method will return the MAC address of the access point, null if there is no network currently connected.
查看 Android Market 中的应用程序“Network Info II”。它确实显示了 MAC 地址,但我不确定这是否仍然是手机的 MAC。它还显示 BSSID,其格式与 MAC 地址相同,因此也许就是您正在寻找的内容。
Check out the application "Network Info II" from the Android Market. It does show the MAC address, but I'm not sure if this is still the phone's MAC. It also shows the BSSID, which has the same format as a MAC address so perhaps is what you're looking for.
我相当确定 getMacAddress() 是,正如您对本地设备的怀疑一样。
如果您可以获得路由器/网关/接入点的 IP,那么您也许可以使用本文中的代码: https://web.archive.org/ web/20160308014312/http://www.flattermann.net/2011/02/android-howto-find-the-hardware-mac-address-of-a-remote-host/ 来执行您的命令。祝你好运!
I'm fairly sure that getMacAddress(), is, as you suspected for the Local Device.
If you can get the IP of the router/gateway/accesspoint, then you might be able to use the code in this post: https://web.archive.org/web/20160308014312/http://www.flattermann.net/2011/02/android-howto-find-the-hardware-mac-address-of-a-remote-host/ to do your bidding. Good luck!