• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java HttpParams类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中cz.msebera.android.httpclient.params.HttpParams的典型用法代码示例。如果您正苦于以下问题:Java HttpParams类的具体用法?Java HttpParams怎么用?Java HttpParams使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



HttpParams类属于cz.msebera.android.httpclient.params包,在下文中一共展示了HttpParams类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getNewHttpClient

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
/**
 * Gets a DefaultHttpClient which trusts a set of certificates specified by the KeyStore
 *
 * @param keyStore custom provided KeyStore instance
 * @return DefaultHttpClient
 */
public static DefaultHttpClient getNewHttpClient(KeyStore keyStore) {

    try {
        SSLSocketFactory sf = new MySSLSocketFactory(keyStore);
        SchemeRegistry registry = new SchemeRegistry();
        registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
        registry.register(new Scheme("https", sf, 443));

        HttpParams params = new BasicHttpParams();
        HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
        HttpProtocolParams.setContentCharset(params, HTTP.UTF_8);

        ClientConnectionManager ccm = new ThreadSafeClientConnManager(params, registry);

        return new DefaultHttpClient(ccm, params);
    } catch (Exception e) {
        return new DefaultHttpClient();
    }
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:26,代码来源:MySSLSocketFactory.java


示例2: getSchemeRegistry

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
public static SchemeRegistry getSchemeRegistry() {
    try {
        KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
        trustStore.load(null, null);
        SSLSocketFactory sf = new MySSLSocketFactory(trustStore);
        sf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
        HttpParams params = new BasicHttpParams();
        HttpConnectionParams.setConnectionTimeout(params, 10000);
        HttpConnectionParams.setSoTimeout(params, 10000);
        HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
        HttpProtocolParams.setContentCharset(params, HTTP.UTF_8);
        SchemeRegistry registry = new SchemeRegistry();
        registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
        registry.register(new Scheme("https", sf, 443));
        return registry;
    } catch (Exception e) {
        return null;
    }
}
 
开发者ID:Seeed-Studio,项目名称:Wio_Link_Android_App,代码行数:20,代码来源:OtherPlatformUtils.java


示例3: createMyHttpClient

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
public static HttpClient createMyHttpClient() {
	try {
		KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
		trustStore.load(null, null);

		SSLSocketFactory mSSLSocketFactory = new IgnoreSSLSocketFactory(trustStore);
		mSSLSocketFactory.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);

		HttpParams params = new BasicHttpParams();
		HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
		HttpProtocolParams.setContentCharset(params, HTTP.UTF_8);

		SchemeRegistry registry = new SchemeRegistry();
		registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
		registry.register(new Scheme("https", mSSLSocketFactory, 443));

		ClientConnectionManager ccm = new ThreadSafeClientConnManager(params, registry);
		return new DefaultHttpClient(ccm, params);
	} catch (KeyStoreException | NoSuchAlgorithmException | IOException | CertificateException | KeyManagementException | UnrecoverableKeyException e) {
		e.printStackTrace();
	}
	return new DefaultHttpClient();
}
 
开发者ID:hiking93,项目名称:NCU-WLAN-Login,代码行数:24,代码来源:IgnoreSSLSocketFactory.java


示例4: setMaxConnections

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
/**
 * Sets maximum limit of parallel connections
 *
 * @param maxConnections maximum parallel connections, must be at least 1
 */
public void setMaxConnections(int maxConnections) {
    if (maxConnections < 1)
        maxConnections = DEFAULT_MAX_CONNECTIONS;
    this.maxConnections = maxConnections;
    final HttpParams httpParams = this.httpClient.getParams();
    ConnManagerParams.setMaxConnectionsPerRoute(httpParams, new ConnPerRouteBean(this.maxConnections));
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:13,代码来源:AsyncHttpClient.java


示例5: setConnectTimeout

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
/**
 * Set connection timeout limit (milliseconds). By default, this is set to
 * 10 seconds.
 *
 * @param value Connection timeout in milliseconds, minimal value is 1000 (1 second).
 */
public void setConnectTimeout(int value) {
    connectTimeout = value < 1000 ? DEFAULT_SOCKET_TIMEOUT : value;
    final HttpParams httpParams = httpClient.getParams();
    ConnManagerParams.setTimeout(httpParams, connectTimeout);
    HttpConnectionParams.setConnectionTimeout(httpParams, connectTimeout);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:13,代码来源:AsyncHttpClient.java


示例6: setProxy

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
/**
 * Sets the Proxy by it's hostname,port,username and password
 *
 * @param hostname the hostname (IP or DNS name)
 * @param port     the port number. -1 indicates the scheme default port.
 * @param username the username
 * @param password the password
 */
public void setProxy(String hostname, int port, String username, String password) {
    httpClient.getCredentialsProvider().setCredentials(
            new AuthScope(hostname, port),
            new UsernamePasswordCredentials(username, password));
    final HttpHost proxy = new HttpHost(hostname, port);
    final HttpParams httpParams = this.httpClient.getParams();
    httpParams.setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:17,代码来源:AsyncHttpClient.java


示例7: createParams

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
private static HttpParams createParams() {
	HttpParams httpParameters = new BasicHttpParams();
	HttpConnectionParams.setConnectionTimeout(httpParameters,
			CONNECTION_TIMEOUT);
	HttpConnectionParams.setSoTimeout(httpParameters, SO_TIMEOUT);
	return httpParameters;
}
 
开发者ID:redsolution,项目名称:bst,代码行数:8,代码来源:TrustedHttpClient.java


示例8: newInstance

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
@Override
public AuthScheme newInstance(HttpParams params) {
    return new BearerAuthScheme();
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:5,代码来源:BearerAuthSchemeFactory.java


示例9: getParams

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
@Override
public HttpParams getParams() {
    return getClient().getParams();
}
 
开发者ID:miku-nyan,项目名称:Overchan-Android,代码行数:5,代码来源:HttpClientWrapper.java


示例10: getResponseFromGetUrl

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
public static String getResponseFromGetUrl(String url,
                                               String params) throws Exception {
        Log.d("Chen", "url--" + url);
        if (null != params && !"".equals(params)) {

            url = url + "?";

            String[] paramarray = params.split(",");

            for (int index = 0; null != paramarray && index < paramarray.length; index++) {

                if (index == 0) {

                    url = url + paramarray[index];
                } else {

                    url = url + "&" + paramarray[index];
                }

            }

        }

        HttpGet httpRequest = new HttpGet(url);

//        httpRequest.addHeader("Cookie", logininfo);

        HttpParams httpParameters = new BasicHttpParams();
        // Set the timeout in milliseconds until a connection is established.
        int timeoutConnection = 30000;
        HttpConnectionParams.setConnectionTimeout(httpParameters,
                timeoutConnection);
        // Set the default socket timeout (SO_TIMEOUT)
        // in milliseconds which is the timeout for waiting for data.
        int timeoutSocket = 30000;
        HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
        DefaultHttpClient httpclient = new DefaultHttpClient(httpParameters);

        // DefaultHttpClient httpclient = new DefaultHttpClient();
        StringBuffer sb = new StringBuffer();


        try {
            HttpResponse httpResponse = httpclient.execute(httpRequest);

            String inputLine = "";
            // Log.d("Chen","httpResponse.getStatusLine().getStatusCode()"+httpResponse.getStatusLine().getStatusCode());
            if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {

                InputStreamReader is = new InputStreamReader(httpResponse
                        .getEntity().getContent());
                BufferedReader in = new BufferedReader(is);
                while ((inputLine = in.readLine()) != null) {

                    sb.append(inputLine);
                }

                in.close();

            } else if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_NOT_MODIFIED) {
                return "";
            }
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        } finally {
            httpclient.getConnectionManager().shutdown();
        }

        return sb.toString();

    }
 
开发者ID:cymcsg,项目名称:UltimateAndroid,代码行数:73,代码来源:HttpUtils.java


示例11: setResponseTimeout

import cz.msebera.android.httpclient.params.HttpParams; //导入依赖的package包/类
/**
 * Set response timeout limit (milliseconds). By default, this is set to
 * 10 seconds.
 *
 * @param value Response timeout in milliseconds, minimal value is 1000 (1 second).
 */
public void setResponseTimeout(int value) {
    responseTimeout = value < 1000 ? DEFAULT_SOCKET_TIMEOUT : value;
    final HttpParams httpParams = httpClient.getParams();
    HttpConnectionParams.setSoTimeout(httpParams, responseTimeout);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:12,代码来源:AsyncHttpClient.java



注:本文中的cz.msebera.android.httpclient.params.HttpParams类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java LexerBasedIdIndexer类代码示例发布时间:2022-05-22
下一篇:
Java MemoryCache类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap