【发布时间】:2014-06-25 11:42:09
【问题描述】:
我想在我的 android 手机上获取我的 mac 地址,而不使用 Wi-fi 或蓝牙,在 android 中以编程方式。
我该怎么做?
【问题讨论】:
标签: android mac-address
我想在我的 android 手机上获取我的 mac 地址,而不使用 Wi-fi 或蓝牙,在 android 中以编程方式。
我该怎么做?
【问题讨论】:
标签: android mac-address
WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wInfo = wifiManager.getConnectionInfo();
String macAddress = wInfo.getMacAddress();
别忘了为 ACCESS_WIFI_STATE 添加权限
【讨论】: