欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

Android 判断SIM卡属于哪个移动运营商,androidsim,Android这样获取本

来源: javaer 分享于  点击 43688 次 点评:65

Android 判断SIM卡属于哪个移动运营商,androidsim,Android这样获取本


Android这样获取本机网络提供商呢?请看下面代码:

    public String getProvidersName()       {         String str = "N/A";         try         {           this.IMSI = this.telephonyManager.getSubscriberId();           System.out.println(this.IMSI);           if (this.IMSI.startsWith("46000"))            str = "中国移动";  break;           if (this.IMSI.startsWith("46002"))            str = "中国移动"; break ;           if (this.IMSI.startsWith("46001"))             str = "中国联通";           else if (this.IMSI.startsWith("46003"))             str = "中国电信";         }         catch (Exception localException)         {           localException.printStackTrace();         }              return str;       }  

注意申明:

 this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone"));  
相关栏目:

用户点评