中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

android 網(wǎng)絡(luò)判斷工具類(APN+WIFI)

2018-07-20    來源:open-open

容器云強勢上線!快速搭建集群,上萬Linux鏡像隨意使用
    public class NetWorkHelper {  
      
        private static String LOG_TAG = "NetWorkHelper";  
      
        public static Uri uri = Uri.parse("content://telephony/carriers");  
      
        /** 
         * 判斷是否有網(wǎng)絡(luò)連接 
         */  
        public static boolean isNetworkAvailable(Context context) {  
            ConnectivityManager connectivity = (ConnectivityManager) context  
                    .getSystemService(Context.CONNECTIVITY_SERVICE);  
      
            if (connectivity == null) {  
                Log.w(LOG_TAG, "couldn't get connectivity manager");  
            } else {  
                NetworkInfo[] info = connectivity.getAllNetworkInfo();  
                if (info != null) {  
                    for (int i = 0; i < info.length; i++) {  
                        if (info[i].isAvailable()) {  
                            Log.d(LOG_TAG, "network is available");  
                            return true;  
                        }  
                    }  
                }  
            }  
            Log.d(LOG_TAG, "network is not available");  
            return false;  
        }  
          
        public static boolean checkNetState(Context context){  
            boolean netstate = false;  
            ConnectivityManager connectivity = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);  
            if(connectivity != null)  
            {  
                NetworkInfo[] info = connectivity.getAllNetworkInfo();  
                if (info != null) {  
                    for (int i = 0; i < info.length; i++)  
                    {  
                        if (info[i].getState() == NetworkInfo.State.CONNECTED)   
                        {  
                            netstate = true;  
                            break;  
                        }  
                    }  
                }  
            }  
            return netstate;  
        }  
      
        /** 
         * 判斷網(wǎng)絡(luò)是否為漫游 
         */  
        public static boolean isNetworkRoaming(Context context) {  
            ConnectivityManager connectivity = (ConnectivityManager) context  
                    .getSystemService(Context.CONNECTIVITY_SERVICE);  
            if (connectivity == null) {  
                Log.w(LOG_TAG, "couldn't get connectivity manager");  
            } else {  
                NetworkInfo info = connectivity.getActiveNetworkInfo();  
                if (info != null  
                        && info.getType() == ConnectivityManager.TYPE_MOBILE) {  
                    TelephonyManager tm = (TelephonyManager) context  
                            .getSystemService(Context.TELEPHONY_SERVICE);  
                    if (tm != null && tm.isNetworkRoaming()) {  
                        Log.d(LOG_TAG, "network is roaming");  
                        return true;  
                    } else {  
                        Log.d(LOG_TAG, "network is not roaming");  
                    }  
                } else {  
                    Log.d(LOG_TAG, "not using mobile network");  
                }  
            }  
            return false;  
        }  
      
        /** 
         * 判斷MOBILE網(wǎng)絡(luò)是否可用 
         *  
         * @param context 
         * @return 
         * @throws Exception 
         */  
        public static boolean isMobileDataEnable(Context context) throws Exception {  
            ConnectivityManager connectivityManager = (ConnectivityManager) context  
                    .getSystemService(Context.CONNECTIVITY_SERVICE);  
            boolean isMobileDataEnable = false;  
      
            isMobileDataEnable = connectivityManager.getNetworkInfo(  
                    ConnectivityManager.TYPE_MOBILE).isConnectedOrConnecting();  
      
            return isMobileDataEnable;  
        }  
      
          
        /** 
         * 判斷wifi 是否可用 
         * @param context 
         * @return 
         * @throws Exception 
         */  
        public static boolean isWifiDataEnable(Context context) throws Exception {  
            ConnectivityManager connectivityManager = (ConnectivityManager) context  
                    .getSystemService(Context.CONNECTIVITY_SERVICE);  
            boolean isWifiDataEnable = false;  
            isWifiDataEnable = connectivityManager.getNetworkInfo(  
                    ConnectivityManager.TYPE_WIFI).isConnectedOrConnecting();  
            return isWifiDataEnable;  
        }  
      
        /** 
         * 設(shè)置Mobile網(wǎng)絡(luò)開關(guān) 
         *  
         * @param context 
         * @param enabled 
         * @throws Exception 
         */  
        public static void setMobileDataEnabled(Context context, boolean enabled)  
                throws Exception {  
            APNManager apnManager=APNManager.getInstance(context);  
            List<APN> list = apnManager.getAPNList();  
            if (enabled) {  
                for (APN apn : list) {  
                    ContentValues cv = new ContentValues();  
                    cv.put("apn", apnManager.matchAPN(apn.apn));  
                    cv.put("type", apnManager.matchAPN(apn.type));  
                    context.getContentResolver().update(uri, cv, "_id=?",  
                            new String[] { apn.apnId });  
                }  
            } else {  
                for (APN apn : list) {  
                    ContentValues cv = new ContentValues();  
                    cv.put("apn", apnManager.matchAPN(apn.apn) + "mdev");  
                    cv.put("type", apnManager.matchAPN(apn.type) + "mdev");  
                    context.getContentResolver().update(uri, cv, "_id=?",  
                            new String[] { apn.apnId });  
                }  
            }  
        }  
      
    }  


標簽: 網(wǎng)絡(luò)

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇: JQuery其他常用函數(shù)

下一篇:SQL Server的日期計算