发布网友 发布时间:2022-04-22 07:24
共3个回答
热心网友 时间:2022-05-18 12:00
android 是Linux内核,linux中mac地址是保存在/etc/init.d/networ 文件中的
但是在android中mac地址是直接写在硬件中的,需要通过API 才能获取
1、Android 获取本机Mac 地址方法:
需要在AndroidManifest.xml文件中添加权限:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
public String getLocalMacAddress() {
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo info = wifi.getConnectionInfo();
return info.getMacAddress();
}
2、Android 获取本机IP地址方法:
public String getLocalIpAddress() {
try {
for (Enumeration<NetworkInterface> en = NetworkInterface
.getNetworkInterfaces(); en.hasMoreElements();) {
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf
.getInetAddresses(); enumIpAddr.hasMoreElements();) {
InetAddress inetAddress = enumIpAddr.nextElement();
if (!inetAddress.isLoopbackAddress()) {
return inetAddress.getHostAddress().toString();
}
}
}
} catch (SocketException ex) {
Log.e("WifiPreference IpAddress", ex.toString());
}
return null;
}
热心网友 时间:2022-05-18 12:00
下载xposed安装器和x隐私,然后安装xposed安装器中的框架并挂载x隐私,重启即可,这是x隐私的教程http://jingyan.baidu.com/article/380abd0a4697171d90192ccb.html
热心网友 时间:2022-05-18 12:02
伪装ip
请用代理或VPN
mac地址
请先ROOT后,可以直接用文本编辑!