Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 判斷SIM卡屬於哪個移動運營商

Android 判斷SIM卡屬於哪個移動運營商

編輯:關於Android編程

Android這樣獲取本機網絡提供商呢?請看下面代碼:

[java]
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; 
 } 

 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;
  }注意申明:

[java]
this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone")); 

 this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone"));
就這麼簡單。。。。


 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved