美文网首页
android 获取手机运营商

android 获取手机运营商

作者: 泡泡之意境 | 来源:发表于2018-09-12 14:50 被阅读9次
/**
 * 获取当前的运营商
 *
 * @param context
 * @return 运营商名字
 */
public static String getOperator(Context context) {


    String ProvidersName = "";
    TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    String IMSI = telephonyManager.getSubscriberId();
    Log.i("qweqwes", "运营商代码" + IMSI);
    if (IMSI != null) {
        if (IMSI.startsWith("46000") || IMSI.startsWith("46002") || IMSI.startsWith("46007")) {
            ProvidersName = "中国移动";
        } else if (IMSI.startsWith("46001")  || IMSI.startsWith("46006")) {
            ProvidersName = "中国联通";
        } else if (IMSI.startsWith("46003")) {
            ProvidersName = "中国电信";
        }
        return ProvidersName;
    } else {
        return "没有获取到sim卡信息";
    }
}

相关文章

网友评论

      本文标题:android 获取手机运营商

      本文链接:https://www.haomeiwen.com/subject/hkivgftx.html