android 获取IMSI信息(判断是移动,联通,电信手机卡)
首先我们需要知道手机IMSI号前面3位460是国家,紧接着后面2位00 02是中国移动,01是中国联通,03是中国电信。那么第一步就是先获取手机IMSI号码:代码如下
1 /** 2 *获取IMSI信息 3 * @param context 4 * @return 5 */ 6 public static String getPhoneIMSI(Context context) { 7 TelephonyManager mTelephonyMgr = (TelephonyManager) context 8 .getSystemService(Context.TELEPHONY_SERVICE); 9 Log.v("LJC", "get getSubscriberId " + mTelephonyMgr.getSubscriberId()); 10 return mTelephonyMgr.getSubscriberId(); 11 }
或:
1 /** 2 * 检查是否电信手机卡 3 * 4 * @return 电信卡 返回true否则false 5 */ 6 public boolean checkSIMCarl(Context context) { 7 boolean value = false; 8 String IMSI = getPhoneIMSI(context); 9 if (IMSI != null) { 10 if (IMSI.startsWith("46003")) 11 value = true; 12 } 13 return value; 14 // IMSI号前面3位460是国家,紧接着后面2位00 02是中国移动,01是中国联通,03是中国电信。其中 15 // if (IMSI.startsWith("46000") || IMSI.startsWith("46002")) { 16 // ProvidersName = "中国移动"; 17 // } else if (IMSI.startsWith("46001")) { 18 // ProvidersName ="中国联通"; 19 // } else if (IMSI.startsWith("46003")) { 20 // ProvidersName = "中国电信"; 21 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。