gpt4 book ai didi

Android编程获取网络连接方式及判断手机卡所属运营商的方法

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Android编程获取网络连接方式及判断手机卡所属运营商的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了Android编程获取网络连接方式及判断手机卡所属运营商的方法。分享给大家供大家参考,具体如下:

问题:项目中写的网络模块,感觉有点乱:两套代码 --模拟器、真机,维护起来十分麻烦.

解决办法:代码自动去检查到那种网络环境,然后调用不同的联网方式.

查看了模拟器上默认的接入点:移动网络 -- APN = "internet" 。

1、通过获取apn的名称,来判断网络 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 获取Mobile网络下的cmwap、cmnet
private int getCurrentApnInUse() {
   int type = NONET;
   Cursor cursor = context.getContentResolver().query(PREFERRED_APN_URI,
       new String[] { "_id" , "apn" , "type" }, null , null , null );
   cursor.moveToFirst();
   int counts = cursor.getCount();
   if (counts != 0 ){ //适配平板外挂3G模块情况
    if (!cursor.isAfterLast()) {
    String apn = cursor.getString( 1 );
    //#777、ctnet 都是中国电信定制机接入点名称,中国电信的接入点:Net、Wap都采用Net即非代理方式联网即可
    //internet 是模拟器上模拟接入点名称
    if (apn.equalsIgnoreCase( "cmnet" ) || apn.equalsIgnoreCase( "3gnet" ) || apn.equalsIgnoreCase( "uninet" )
      || apn.equalsIgnoreCase( "#777" ) || apn.equalsIgnoreCase( "ctnet" ) || apn.equalsIgnoreCase( "internet" )) {
     type = WIFIAndCMNET;
    } else if (apn.equalsIgnoreCase( "cmwap" ) || apn.equalsIgnoreCase( "3gwap" ) || apn.equalsIgnoreCase( "uniwap" )) {
     type = CMWAP;
    }
   } else {
    //适配中国电信定制机,如海信EG968,上面方式获取的cursor为空,所以换种方式
    Cursor c = context.getContentResolver().query(PREFERRED_APN_URI, null , null , null , null );
    c.moveToFirst();
    String user=c.getString(c.getColumnIndex( "user" ));
    if (user.equalsIgnoreCase( "ctnet" )){
     type = WIFIAndCMNET;
    }
    c.close();
   }
   } else {
    type = WIFIAndCMNET; //平板外挂3G,采用非代理方式上网
   }
   cursor.close();
   return type;
}

2、直接获取代理参数:proxy 来判断是否为代理 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
  * MOBILE方式下获取当前的网络连接方式,代理或非代理
  *
  */
public static String getCurrentApnInUse(Context context)
{
   Cursor cursor = context.getContentResolver().query(PREFERRED_APN_URI, new String[] { "_id" , "apn" , "type" , "proxy" }, null , null ,
       null );
   cursor.moveToFirst();
   if (cursor.isAfterLast())
   {
     String apn = cursor.getString( 3 );
   if (apn == null )
   {
     apn = "" ;
   }
   }
   return apn;
}
/**
  * 获取手机卡类型,移动、联通、电信
  *
  */
private static int getMobileType(Context context)
{
   int type = 0 ;
   TelephonyManager iPhoneManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
   String iNumeric = iPhoneManager.getSimOperator();
   if (iNumeric.length() > 0 )
   {
     if (iNumeric.equals( "46000" ) || iNumeric.equals( "46002" ))
     {
       // 中国移动
     }
     else if (iNumeric.equals( "46001" ))
     {
       // 中国联通
     }
     else if (iNumeric.equals( "46003" ))
     {
       // 中国电信
     }
   }
}

希望本文所述对大家Android程序设计有所帮助.

最后此篇关于Android编程获取网络连接方式及判断手机卡所属运营商的方法的文章就讲到这里了,如果你想了解更多关于Android编程获取网络连接方式及判断手机卡所属运营商的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com