皮皮网

【直播网站项目源码】【delphi生成json源码】【安卓滑动源码】entityutils源码

2024-11-19 22:47:58 来源:网站本地源码

1.如何使用HttpClient

entityutils源码

如何使用HttpClient

       ä¸€ã€ç®€ä»‹

       HttpClient是Apache Jakarta Common下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包,并且它支持HTTP协议最新的版本和建议。HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLUnit都使用了HttpClient。

       äºŒã€ç‰¹æ€§

       1. 基于标准、纯净的java语言。实现了Http1.0和Http1.1

       2. 以可扩展的面向对象的结构实现了Http全部的方法(GET,直播网站项目源码 POST, PUT, DELETE, HEAD, OPTIONS, and TRACE)。

       3. 支持HTTPS协议。

       4. 通过Http代理建立透明的连接。

       5. 利用CONNECT方法通过Http代理建立隧道的.test;

       import java.io.File;

       import java.io.FileInputStream;

       import java.io.IOException;

       import java.io.UnsupportedEncodingException;

       import java.security.KeyManagementException;

       import java.security.KeyStore;

       import java.security.KeyStoreException;

       import java.security.NoSuchAlgorithmException;

       import java.security.cert.CertificateException;

       import java.util.ArrayList;

       import java.util.List;

       import javax.net.ssl.SSLContext;

       import org.apache.ment = new StringBody("A binary file of some kind", ContentType.TEXT_PLAIN);

       HttpEntity reqEntity = MultipartEntityBuilder.create().addPart("bin", bin).addPart("comment", comment).build();

       httppost.setEntity(reqEntity);

       System.out.println("executing request " + httppost.getRequestLine());

       CloseableHttpResponse response = httpclient.execute(httppost);

       try {

       System.out.println("----------------------------------------");

       System.out.println(response.getStatusLine());

       HttpEntity resEntity = response.getEntity();

       if (resEntity != null) {

       System.out.println("Response content length: " + resEntity.getContentLength());

       }

       EntityUtils.consume(resEntity);

       } finally {

       response.close();

       }

       } catch (ClientProtocolException e) {

       e.printStackTrace();

       } catch (IOException e) {

       e.printStackTrace();

       } finally {

       try {

       httpclient.close();

       } catch (IOException e) {

       e.printStackTrace();

       }

       }

       }

       }</namevaluepair></namevaluepair></namevaluepair></namevaluepair>