gpt4 book ai didi

android - 安卓手机中的MAC地址

转载 作者:行者123 更新时间:2023-11-29 18:25:13 25 4
gpt4 key购买 nike

我用带有 Java 的 Android Studio 构建了一个 android 应用程序,我想从手机中获取 mac 地址限制用户执行的任何操作和其他操作谁能帮我? 我的代码是这样的,但没有用

 private void getmacadres() {

String macAddress =
android.provider.Settings.Secure.getString(this.getApplicationContext().getContentResolver(), "android_id");


Toast.makeText(G.Context, macAddress, Toast.LENGTH_LONG).show();
}

最佳答案

将此权限添加到您的 list 文件:

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

并使用这个:

WifiManager wifiManager = (WifiManager) 
getApplicationContext().getSystemService(Context.WIFI_SERVICE);
WifiInfo wInfo = wifiManager.getConnectionInfo();
String macAddress = wInfo.getMacAddress();

关于android - 安卓手机中的MAC地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59451140/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com