当前位置: 首页>>代码示例>>Java>>正文


Java HTTP类代码示例

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


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

示例1: getNewHttpClient

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的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.protocol.HTTP; //导入依赖的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.protocol.HTTP; //导入依赖的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: post

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
public static void post(Context mContext, String url, JSONObject jsonObject, JsonHttpResponseHandler jsonHttpResponseHandler) {
    UserManager userManager = new UserManager(mContext);
    try {
        jsonObject.put("token", userManager.get_token());
    } catch (JSONException e) {
        e.printStackTrace();
    }
    StringEntity stringEntity = new StringEntity(jsonObject.toString(), HTTP.UTF_8);
    client.post(mContext, getAbsoluteTokenUrl(url, mContext), stringEntity, "application/json; charset=utf-8", jsonHttpResponseHandler);
}
 
开发者ID:BillBillBillBill,项目名称:WishTalk-android,代码行数:11,代码来源:WishtalkRestClient.java

示例5: put

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
public static void put(Context mContext, String url, JSONObject jsonObject, JsonHttpResponseHandler jsonHttpResponseHandler) {
    UserManager userManager = new UserManager(mContext);
    try {
        jsonObject.put("token", userManager.get_token());
    } catch (JSONException e) {
        e.printStackTrace();
    }
    StringEntity stringEntity = new StringEntity(jsonObject.toString(), HTTP.UTF_8);
    client.put(mContext, getAbsoluteTokenUrl(url, mContext), stringEntity, "application/json; charset=utf-8", jsonHttpResponseHandler);
}
 
开发者ID:BillBillBillBill,项目名称:WishTalk-android,代码行数:11,代码来源:WishtalkRestClient.java

示例6: get

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
public static void get(Context mContext, String url, JSONObject jsonObject, JsonHttpResponseHandler jsonHttpResponseHandler) {
    UserManager userManager = new UserManager(mContext);
    try {
        jsonObject.put("token", userManager.get_token());
    } catch (JSONException e) {
        e.printStackTrace();
    }
    StringEntity stringEntity = new StringEntity(jsonObject.toString(), HTTP.UTF_8);
    client.get(mContext, getAbsoluteTokenUrl(url, mContext), stringEntity, "application/json; charset=utf-8", jsonHttpResponseHandler);
}
 
开发者ID:BillBillBillBill,项目名称:WishTalk-android,代码行数:11,代码来源:WishtalkRestClient.java

示例7: delete

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
public static void delete(Context mContext, String url, JSONObject jsonObject, JsonHttpResponseHandler jsonHttpResponseHandler) {
    UserManager userManager = new UserManager(mContext);
    try {
        jsonObject.put("token", userManager.get_token());
    } catch (JSONException e) {
        e.printStackTrace();
    }
    StringEntity stringEntity = new StringEntity(jsonObject.toString(), HTTP.UTF_8);
    client.delete(mContext, getAbsoluteTokenUrl(url, mContext), stringEntity, "application/json; charset=utf-8", jsonHttpResponseHandler);
}
 
开发者ID:BillBillBillBill,项目名称:WishTalk-android,代码行数:11,代码来源:WishtalkRestClient.java

示例8: addPartWithCharset

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
public void addPartWithCharset(String key, String value, String charset) {
    if (charset == null) charset = HTTP.UTF_8;
    addPart(key, value, "text/plain; charset=" + charset);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:5,代码来源:SimpleMultipartEntity.java

示例9: tokenizeCard

import cz.msebera.android.httpclient.protocol.HTTP; //导入依赖的package包/类
void tokenizeCard(JSONObject jsonObject, AsyncHttpResponseHandler responseHandler) throws JSONException, UnsupportedEncodingException {
    ByteArrayEntity entity = new ByteArrayEntity(jsonObject.toString().getBytes("UTF-8"));
    entity.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
    httpClient.put(null, url + CARD_TOKENIZE + merchantToken, entity, "application/json", responseHandler);
}
 
开发者ID:bluesnap,项目名称:bluesnap-android-int,代码行数:6,代码来源:BlueSnapAPI.java


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