Can I find the MAC address of my Access point in Android?

后端 未结 4 1295
南旧
南旧 2020-12-02 23:42

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

4条回答
  •  甜味超标
    2020-12-03 00:13

    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();
    }
    

提交回复
热议问题