Get MAC Address of android device without Wifi

前端 未结 5 1887
清酒与你
清酒与你 2020-12-01 07:00

How do I get the MAC-Address of the network interface of an android device which doesn\'t have a Wifi-Interface (e.g. the android emulator)? WifiInfo obtained via the WifiMa

5条回答
  •  失恋的感觉
    2020-12-01 07:12

    See this post where I have submitted Utils.java example to provide pure-java implementations.

    Utils.getMACAddress("wlan0");
    Utils.getMACAddress("eth0");
    Utils.getIPAddress(true); // IPv4
    Utils.getIPAddress(false); // IPv6 
    

提交回复
热议问题