Android 判断SIM卡属于哪个移动运营商
第一种方法:
获取手机的IMSI码,并判断是中国移动\中国联通\中国电信
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String imsi = telManager.getSubscriberId();
if(imsi!=null){
if(imsi.startsWith("46000") || imsi.startsWith("46002")){//因为移动网络编号46000下的IMSI已经用完,所以虚拟了一个46002编号,134/159号段使用了此编号
//中国移动
}else if(imsi.startsWith("46001")){
//中国联通
}else if(imsi.startsWith("46003")){
//中国电信
}
}
第二种方法
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String operator = telManager.getSimOperator();
if(operator!=null){
if(operator.equals("46000") || operator.equals("46002")){
//中国移动
}else if(operator.equals("46001")){
//中国联通
}else if(operator.equals("46003")){
//中国电信
}
}
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
您可能感兴趣的文章:Android读取用户号码,手机串号,SIM卡序列号的实现代码Android获取手机通讯录、sim卡联系人及调用拨号界面方法android监控sim卡有没有服务示例(sim卡管理)Android获取手机SIM卡运营商信息的方法Android 判断SIM卡属于哪个移动运营商的实现代码Android4.X中SIM卡信息初始化过程详解Android 判断SIM卡是中国移动\中国联通\中国电信(移动运营商)Android4.X读取SIM卡短信和联系人相关类实例分析浅析Android手机卫士sim卡绑定Android获取双卡双待手机的SIM卡信息示例代码