我可以在 Android 中找到我的接入点的 MAC 地址吗?

发布于 2024-11-09 01:09:01 字数 382 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

2024-11-16 01:09:01

getBSSID() of WifiInfo class will return MAC address of remote access point.

BSSID explained here.

独享拥抱 2024-11-16 01:09:01

以下方法将返回接入点的 MAC 地址,如果当前没有连接网络,则返回 null。

public String getMacId() {

    WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
    WifiInfo wifiInfo = wifiManager.getConnectionInfo();
    return wifiInfo.getBSSID();
}

The following method will return the MAC address of the access point, null if there is no network currently connected.

public String getMacId() {

    WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
    WifiInfo wifiInfo = wifiManager.getConnectionInfo();
    return wifiInfo.getBSSID();
}
一指流沙 2024-11-16 01:09:01

查看 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.

孤城病女 2024-11-16 01:09:01

我相当确定 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文