Android应用层写入APN

作者: YoungTa0 | 来源:发表于2018-04-23 11:35 被阅读196次

    APN简述

    APN决定了手机通过哪种接入方式来访问网络,用来标识GPRS的业务种类。
    APN分为两大类:
    WAP业务。
    WAP以外的服务,比如:连接因特网。
    从运营商角度看,APN就是一个逻辑名字,APN一般都部署在GGSN设备上或者逻辑连接到GGSN上,用户使用GPRS上网时,都通过GGSN代理出去到外部网络,因此,APN设置、过滤、统计等,就成为一个对GPRS计费、GPRS资费有重要参考价值的参数之一(因为APN可以区分一个业务或者外部网络)。
    APN的完整说明在3GPP规范TS23.003 Clause 9中进行了详细定义。

    写入条件

    1.应用必须系统级签名
    2.插入SIM卡
    3.添加权限:<uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />

    具体实现

    Android系统中,对于APN网络的API是隐藏的,因此获取手机的APN设置,需要通过ContentProvider来进行数据库查询,查询的URI地址是:
    取得全部的APN列表:content://telephony/carriers
    取得当前设置的APN:content://telephony/carriers/preferapn
    取得current=1的APN:content://telephony/carriers/current

    工具类代码实现:
    
    import android.content.ContentResolver;
    import android.content.ContentValues;
    import android.content.Context;
    import android.database.Cursor;
    import android.net.Uri;
    import android.telephony.TelephonyManager;
    
    public class APNUtil {
        public Context context;
        /**
         * 当前连接APN
         * */
        private Uri APN_URI_NOW =Uri.parse("content://telephony/carriers/current");
        /**
         * 所有APN
         * */
        private Uri APN_URI = Uri.parse("content://telephony/carriers");
        private Uri CURRENT_APN_URI = Uri.parse("content://telephony/carriers/preferapn");
        // 新增一个cmnet接入点
    
        public APNUtil(Context context){
            this.context = context;
        }
        public int addAPN(String apnName, String apn) {
            int id = -1;
            String NUMERIC = getSIMInfo();
            if (NUMERIC == null) {
                return -1;
            }
            ContentResolver resolver = context.getContentResolver();
            ContentValues values = new ContentValues();
            //apn中文描述
            values.put("name", apnName);
            //apn名称
            values.put("apn", apn);
            //apn类型
            values.put("type", "default");
            values.put("numeric", NUMERIC);
            values.put("mcc", NUMERIC.substring(0, 3));
            values.put("mnc", NUMERIC.substring(3, NUMERIC.length()));
            //代理
            values.put("proxy", "");
            //端口
            values.put("port", "");
            //彩信代理
            values.put("mmsproxy", "");
            //彩信端口
            values.put("mmsport", "");
            //用户名
            values.put("user", "");
            //服务器
            values.put("server", "");
            //密码
            values.put("password", "");
            //MMSC
            values.put("mmsc", "");
            Cursor c = null;
            Uri newRow = resolver.insert(APN_URI, values);
            if (newRow != null) {
                c = resolver.query(newRow, null, null, null, null);
                int idIndex = c.getColumnIndex("_id");
                c.moveToFirst();
                id = c.getShort(idIndex);
            }
            if (c != null) {
                c.close();
            }
            return id;
        }
    
        protected String getSIMInfo() {
            TelephonyManager iPhoneManager = (TelephonyManager) context
                    .getSystemService(Context.TELEPHONY_SERVICE);
            return iPhoneManager.getSimOperator();
        }
        // 设置接入点
        public void SetAPN(int id) {
            ContentResolver resolver = context.getContentResolver();
            ContentValues values = new ContentValues();
            values.put("apn_id", id);
            resolver.update(CURRENT_APN_URI, values, null, null);
        }
        public Boolean checkAPN(String apn) {
            // 检查系统已经写入的APN
            Cursor cr = context.getContentResolver().query(APN_URI, null, null, null, null);
            while (cr != null && cr.moveToNext()) {
    //            Log.d("apn", "APN: "+ cr.getString(cr.getColumnIndex("apn")));
                if(cr.getString(cr.getColumnIndex("apn")).equals(apn)){
                    return true;
                }
            }
            return false;
        }
    }
    
    

    工具类的调用:

        public void addAPN(){
            APNUtil apn = new APNUtil(context);
            Boolean hasCMIOT = apn.checkAPN("CMIOT");
            Boolean hasCMMTM = apn.checkAPN("CMMTM");
            Log.d("apn", "hasCMIOT: "+hasCMIOT);
            Log.d("apn", "hasCMMTM: "+hasCMMTM);
            if(! hasCMIOT || !hasCMMTM){
                int simState = NetUtil.getSimState(this);
                //如果有SIM卡
                if (simState == TelephonyManager.SIM_STATE_READY) {
                    if(!hasCMIOT) {
                        apn.addAPN("移动物联网卡APN", "CMIOT");
                    }else if(!hasCMMTM){
                        apn.addAPN("移动物联网卡APN","CMMTM");
                    }
                }else {
                    Log.d("apn", "no SIMCard ");
                }
            }
        }
    

    相关文章

      网友评论

        本文标题:Android应用层写入APN

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