2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > 获取安卓设备信息:机型 系统版本号 分辨率 运营商 联网方式 IMEI MEID MAC地址

获取安卓设备信息:机型 系统版本号 分辨率 运营商 联网方式 IMEI MEID MAC地址

时间:2022-09-09 16:54:48

相关推荐

获取安卓设备信息:机型 系统版本号 分辨率 运营商 联网方式 IMEI MEID MAC地址

获取Android 手机设备信息:操作系统版本号、手机分辨率、运营商、当前联网方式、IMEI、MEID、MAC地址

包括双卡机型上的两个IMEI信息

/*** Created by Pandaon /12/26.* 手机详细信息*/public class DeviceInfoModel {private static final String TAG = "DeviceInfoModel";private static DeviceInfoModel instance;public DeviceInfoModel() {}public static DeviceInfoModel getInstance() {if (instance == null) {instance = new DeviceInfoModel();}return instance;}/*** 获取机型*/public String getPhoneModel() {// TelephonyManager manager= (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);// String mtype = android.os.Build.MODEL;String brand = android.os.Build.BRAND;//手机品牌String model = android.os.Build.MODEL;//手机型号Log.w(TAG, "手机型号:" + brand + " " + model);return brand + " " + model;}/*** 获取操作系统** @return*/public String getOS() {Log.w(TAG, "操作系统:" + "Android" + android.os.Build.VERSION.RELEASE);return "Android" + android.os.Build.VERSION.RELEASE;}/*** 获取手机分辨率** @param context* @return*/public String getResolution(Context context) {// 方法1 Android获得屏幕的宽和高WindowManager windowManager = ((Activity) context).getWindowManager();Display display = windowManager.getDefaultDisplay();int screenWidth = display.getWidth();int screenHeight = display.getHeight();Log.w(TAG, "分辨率:" + screenWidth + "*" + screenHeight);return screenWidth + "*" + screenHeight;}/*** 获取唯一设备号*/public String getDeviceNo(Context context) {if (!checkReadPhoneStatePermission(context)) {Log.w(TAG, "获取唯一设备号: 无权限");return "";}TelephonyManager TelephonyMgr = (TelephonyManager) context.getSystemService(TELEPHONY_SERVICE);// @SuppressLint("HardwareIds") String szImei = TelephonyMgr.getDeviceId();Method method = null;String imei2 = "";try {method = TelephonyMgr.getClass().getMethod("getDeviceId", int.class);String imei1 = TelephonyMgr.getDeviceId();String imei0 = (String) method.invoke(TelephonyMgr, 0);imei2 = (String) method.invoke(TelephonyMgr, 1);String meid = (String) method.invoke(TelephonyMgr, 2);Log.e(TAG, "唯一设备号szImei-0 is :" + imei0 + " --- imei1: " + imei1 + " --- imei2: " + imei2 + " -meid is :" + meid);} catch (NoSuchMethodException e) {e.printStackTrace();Log.w(TAG, "唯一设备号imei-NoSuchMethodException: " + e.getMessage());} catch (IllegalAccessException e) {e.printStackTrace();Log.w(TAG, "唯一设备号imei-IllegalAccessException: " + e.getMessage());} catch (InvocationTargetException e) {e.printStackTrace();Log.w(TAG, "唯一设备号imei-InvocationTargetException: " + e.getMessage());}return imei2;}/*** 获取运营商** @param context* @return*/public String getNetOperator(Context context) {TelephonyManager manager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);String iNumeric = manager.getSimOperator();String netOperator = "";if (iNumeric.length() > 0) {if (iNumeric.equals("46000") || iNumeric.equals("46002")) {// 中国移动netOperator = "中国移动";} else if (iNumeric.equals("46003")) {// 中国电信netOperator = "中国电信";} else if (iNumeric.equals("46001")) {// 中国联通netOperator = "中国联通";} else {//未知netOperator = "未知";}}Log.w(TAG, "运营商:" + netOperator);return netOperator;}/*** 获取联网方式*/public String getNetMode(Context context) {String strNetworkType = "未知";// TelephonyManager manager= (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);// manager.getNetworkType();ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);NetworkInfo networkInfo = manager.getActiveNetworkInfo();if (networkInfo != null && networkInfo.isConnected()) {int netMode = networkInfo.getType();if (netMode == ConnectivityManager.TYPE_WIFI) {strNetworkType = "WIFI";//wifi} else if (netMode == ConnectivityManager.TYPE_MOBILE) {int networkType = networkInfo.getSubtype();switch (networkType) {//2gcase WORK_TYPE_GPRS:case WORK_TYPE_EDGE:case WORK_TYPE_CDMA:case WORK_TYPE_1xRTT:case WORK_TYPE_IDEN: //api<8 : replace by 11strNetworkType = "2G";break;//3gcase WORK_TYPE_UMTS:case WORK_TYPE_EVDO_0:case WORK_TYPE_EVDO_A:case WORK_TYPE_HSDPA:case WORK_TYPE_HSUPA:case WORK_TYPE_HSPA:case WORK_TYPE_EVDO_B: //api<9 : replace by 14case WORK_TYPE_EHRPD: //api<11 : replace by 12case WORK_TYPE_HSPAP: //api<13 : replace by 15strNetworkType = "3G";break;case WORK_TYPE_LTE: //api<11 : replace by 13strNetworkType = "4G";break;default:String _strSubTypeName = networkInfo.getSubtypeName();// /item/TD-SCDMA 中国移动 联通 电信 三种3G制式if (_strSubTypeName.equalsIgnoreCase("TD-SCDMA") || _strSubTypeName.equalsIgnoreCase("WCDMA") || _strSubTypeName.equalsIgnoreCase("CDMA2000")) {strNetworkType = "3G";} else {strNetworkType = _strSubTypeName;}break;}}}Log.w(TAG, "联网方式:" + strNetworkType);return strNetworkType;}private boolean checkReadPhoneStatePermission(Context context) {try {if (ContextCompat.checkSelfPermission(context, Manifest.permission.READ_PHONE_STATE)!= PackageManager.PERMISSION_GRANTED) {ActivityCompat.requestPermissions((Activity) context, new String[]{Manifest.permission.READ_PHONE_STATE},10);return false;}} catch (IllegalArgumentException e) {return false;}return true;}@SuppressLint({"MissingPermission", "HardwareIds"})public String getMEID(Context context) {if (!checkReadPhoneStatePermission(context)) {Log.w(TAG, "获取唯一设备号-getMEID: 无权限");return "";}String meid = "";TelephonyManager mTelephonyMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);if (null != mTelephonyMgr) {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {meid = mTelephonyMgr.getMeid();Log.i(TAG, "Android版本大于o-26-优化后的获取---meid:" + meid);} else {meid = mTelephonyMgr.getDeviceId();}}Log.i(TAG, "优化后的获取---meid:" + meid);return meid;}@SuppressLint("MissingPermission")public String getIMEI(Context context) {if (!checkReadPhoneStatePermission(context)) {Log.w(TAG, "获取唯一设备号-getIMEI: 无权限");return "";}String imei1 = "";TelephonyManager mTelephonyMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);if (null != mTelephonyMgr) {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {imei1 = mTelephonyMgr.getImei(0);Log.i(TAG, "Android版本大于o-26-优化后的获取---imei-1:" + imei1);} else {try {imei1 = getDoubleImei(mTelephonyMgr, "getDeviceIdGemini", 0);} catch (Exception e) {try {imei1 = getDoubleImei(mTelephonyMgr, "getDeviceId", 0);} catch (Exception e1) {e1.printStackTrace();}Log.e(TAG, "get device id fail: " + e.toString());}}}Log.i(TAG, "优化后的获取---imei1:" + imei1);return imei1;}@SuppressLint("MissingPermission")public String getIMEI2(Context context) {if (!checkReadPhoneStatePermission(context)) {Log.w(TAG, "获取唯一设备号-getIMEI2: 无权限");return "";}String imei2 = "";TelephonyManager mTelephonyMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);if (null != mTelephonyMgr) {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {imei2 = mTelephonyMgr.getImei(1);mTelephonyMgr.getMeid();Log.i(TAG, "Android版本大于o-26-优化后的获取---imei-2:" + imei2);} else {try {imei2 = getDoubleImei(mTelephonyMgr, "getDeviceIdGemini", 1);} catch (Exception e) {try {imei2 = getDoubleImei(mTelephonyMgr, "getDeviceId", 1);} catch (Exception ex) {Log.e(TAG, "get device id fail: " + e.toString());}}}}Log.i(TAG, "优化后的获取--- imei2:" + imei2);return imei2;}/*** 获取双卡手机的imei*/private String getDoubleImei(TelephonyManager telephony, String predictedMethodName, int slotID) throws Exception {String inumeric = null;Class<?> telephonyClass = Class.forName(telephony.getClass().getName());Class<?>[] parameter = new Class[1];parameter[0] = int.class;Method getSimID = telephonyClass.getMethod(predictedMethodName, parameter);Object[] obParameter = new Object[1];obParameter[0] = slotID;Object ob_phone = getSimID.invoke(telephony, obParameter);if (ob_phone != null) {inumeric = ob_phone.toString();}return inumeric;}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。