Android编程获取网络连接方式及判断手机卡所属运营商的方法
程序员文章站
2024-02-13 23:38:28
本文实例讲述了android编程获取网络连接方式及判断手机卡所属运营商的方法。分享给大家供大家参考,具体如下:
问题:项目中写的网络模块,感觉有点乱:两套代码 --模拟器...
本文实例讲述了android编程获取网络连接方式及判断手机卡所属运营商的方法。分享给大家供大家参考,具体如下:
问题:项目中写的网络模块,感觉有点乱:两套代码 --模拟器、真机,维护起来十分麻烦。
解决办法:代码自动去检查到那种网络环境,然后调用不同的联网方式。
查看了模拟器上默认的接入点:移动网络 -- apn = "internet"
1、通过获取apn的名称,来判断网络
// 获取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 来判断是否为代理
/** * 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程序设计有所帮助。