android 判断是否需要设置代理

android网络中有WIFI、CMNET和CMWAP、CDMA网络类型,其中WIFI、CMNET采用通过路由直接连接方式,不需要设置代理即可连接网络,CMWAP为专用网络,需要通过代理访问网络,CDMA中也有需要设置代理访问网络的类型(不太确定,CDMA中可能也是采用CMNET或CMWAP访问网络)

CMWAP设置代理

判断是否需要设置代理

public static boolean needSetProxy() {
	ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo mobNetInfo = connectivityManager.getActiveNetworkInfo();
        if (mobNetInfo == null || "wifi".equals(mobNetInfo.getTypeName().toLowerCase())) {//wifi网络及cmnet网络不许要设置代理
            return false;
        }
        if (mobNetInfo.getSubtypeName().toLowerCase().contains("cdma")) {
        	//cdma网络 host和port不为空 需要设置代理
            if (android.net.Proxy.getDefaultHost() != null && android.net.Proxy.getDefaultPort() != -1) {
                return true;
            }
            //wap类型需要设置代理
        } else if (mobNetInfo.getExtraInfo().contains("wap")) {
            return true;
        }
        
        return false;
}

设置代理

 /**
     *  更新代理
     */
    private void updateNetProxy() {
	//client为HttpClient子类,获取httpParams并为之设置参数
    	HttpParams params = client.getParams();
    	if (needSetProxy()) {
    		String proxy = android.net.Proxy.getDefaultHost(); 
    		int port = android.net.Proxy.getDefaultPort();
    		if (proxy != null && port != -1) {
    			HttpHost host = new HttpHost(proxy, port);
			//设置代理
    			params.setParameter(ConnRouteParams.DEFAULT_PROXY, host);
    		} else {
    			params.removeParameter(ConnRouteParams.DEFAULT_PROXY);
    		}
    	} else {
    		params.removeParameter(ConnRouteParams.DEFAULT_PROXY);
    	}
    }


你可能感兴趣的:(android)