Android手机获取运营商

时间:2022-11-18 19:55:33
<span style="font-size:14px;">/* 返回运营商 需要加入权限 <uses-permission android:name="android.permission.READ_PHONE_STATE">
*
* @return 1,代表中国移动,2,代表中国联通,3,代表中国电信,0,代表未知
* @author youzc@yiche.com
*/
public int getOperators(Context context) {
// 移动设备网络代码(英语:Mobile Network Code,MNC)是与移动设备国家代码(Mobile Country Code,MCC)(也称为“MCC /
// MNC”)相结合, 例如46000,前三位是MCC,后两位是MNC 获取手机服务商信息
int OperatorsName = 0;
TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
String IMSI = tm.getSubscriberId();
// IMSI号前面3位460是国家,紧接着后面2位00 运营商代码
System.out.println(IMSI);
if (IMSI.startsWith("46000") || IMSI.startsWith("46002") || IMSI.startsWith("46007")) {
OperatorsName = 1;
} else if (IMSI.startsWith("46001") || IMSI.startsWith("46006")) {
OperatorsName = 2;
} else if (IMSI.startsWith("46003") || IMSI.startsWith("46005")) {
OperatorsName = 3;
}
return OperatorsName;
}</span>
我这里解决的方案是通过设备的MCC/MNC代码来判断。
我们要了解MCC/MNC是什么,请看WIKI百科。通过阅读,我们能够知道,只要对比MCC/MNC编码,就能知道具体是什么运营商了。