0
如何從Android應用獲取設備的MAC地址和IP地址?從Android應用獲取設備的MAC地址和IP地址
如何從Android應用獲取設備的MAC地址和IP地址?從Android應用獲取設備的MAC地址和IP地址
public static String getMacAddr(Context appContext) {
WifiManager manager=(WifiManager) appContext.getSystemService(Context.WIFI_SERVICE);
WifiInfo info=manager.getConnectionInfo();
String m_macAddr=info.getMacAddress();
return m_macAddr;
}