您的位置:首页 > 理论基础 > 计算机网络

HttpClient4.5.2编程

2016-04-20 10:57 316 查看
HttpClient是Apache Jakarta Common下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包,并且它支持HTTP协议最新的版本和建议。HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLUnit都使用了HttpClient。下载地址:http://hc.apache.org/downloads.cgi
特点

1. 基于标准、纯净的java语言。实现了Http1.0和Http1.1
2. 以可扩展的面向对象的结构实现了Http全部的方法(GET, POST, PUT, DELETE, HEAD, OPTIONS, and TRACE)。
3. 支持HTTPS协议。
4. 通过Http代理建立透明的连接。
5. 利用CONNECT方法通过Http代理建立隧道的https连接。
6. Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO/Kerberos认证方案。
7. 插件式的自定义认证方案。
8. 便携可靠的套接字工厂使它更容易的使用第三方解决方案。
9. 连接管理器支持多线程应用。支持设置最大连接数,同时支持设置每个主机的最大连接数,发现并关闭过期的连接。
10. 自动处理Set-Cookie中的Cookie。
11. 插件式的自定义Cookie策略。
12. Request的输出流可以避免流中内容直接缓冲到socket服务器。
13. Response的输入流可以有效的从socket服务器直接读取相应内容。
14. 在http1.0和http1.1中利用KeepAlive保持持久连接。
15. 直接获取服务器发送的response code和 headers。
16. 设置连接超时的能力。
17. 实验性的支持http1.1 response caching。
18. 源代码基于Apache License 可免费获取。

操作

1. 创建HttpClient对象。
2. 创建请求方法的实例,并指定请求URL。如果需要发送GET请求,创建HttpGet对象;如果需要发送POST请求,创建HttpPost对象。(过去版本GetMethod)
3. 如果需要发送请求参数,可调用HttpGet、HttpPost共同的setParams(HetpParams params)方法来添加请求参数;对于HttpPost对象而言,也可调用setEntity(HttpEntity entity)方法来设置请求参数。
4. 调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。
5. 调用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可获取服务器的响应头;调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容。程序可通过该对象获取服务器的响应内容。
6. 释放连接。无论执行方法是否成功,都必须释放连接

1.发送get请求

public static void httpGet(){
CloseableHttpClient httpclient = HttpClients.createDefault();
try{
//创建httpget
//HttpGet httpget = new HttpGet("http://rs.xidian.edu.cn/forum.php");
HttpGet httpget = new HttpGet("http://club.xdnice.com/thread-1400344-1-1.html");
System.out.println("executing request " + httpget.getURI());
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("wd","wq"));
String str = EntityUtils.toString(new UrlEncodedFormEntity(params));
httpget.setURI(new URI(httpget.getURI().toString() +"?" + str));

//执行get请求
CloseableHttpResponse response = httpclient.execute(httpget);
try{
//获取响应实体
HttpEntity entity = response.getEntity();
//响应状态
System.out.println(response.getStatusLine());
if(entity != null){
//内容长度
System.out.println("Response content length: " + entity.getContentLength());
//响应内容
System.out.println("Response content: " + EntityUtils.toString(entity));

}
}finally{
response.close();
}
}catch(Exception e){
e.printStackTrace();
}finally{
try{
httpclient.close();
}catch(IOException e){
e.printStackTrace();
}
}
}


2. 发送post请求(并不能成功登陆,有验证码。)

public static void httpPost(){
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpPost httppost = new HttpPost("https://passport.csdn.net/account/login");
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("username","***"));
params.add(new BasicNameValuePair("password","***"));
UrlEncodedFormEntity uefEntity;
try{
uefEntity = new UrlEncodedFormEntity(params,"UTF-8");
httppost.setEntity(uefEntity);
System.out.println("executing request " + httppost.getURI());
CloseableHttpResponse response = httpclient.execute(httppost);
try{
HttpEntity entity = response.getEntity();
if(entity !=null){
System.out.println("Response content: " +EntityUtils.toString(entity));
}
}finally{
response.close();
}
}catch(Exception e){
e.printStackTrace();
}finally{
try{
httpclient.close();
}catch(Exception e){
e.printStackTrace();
}
}

}


3.模拟登陆(试了好多网址没一个能登陆,呵呵哒)

public static void login(){
RequestConfig requestConfig = RequestConfig.custom().setCookieSpec(CookieSpecs.STANDARD_STRICT).build();
CloseableHttpClient httpClient = HttpClients.custom().setDefaultRequestConfig(requestConfig).build();

try {
List<NameValuePair> valuePairs = new LinkedList<NameValuePair>();
valuePairs.add(new BasicNameValuePair("username", ***"));
valuePairs.add(new BasicNameValuePair("password", "***"));

UrlEncodedFormEntity entity = new UrlEncodedFormEntity(valuePairs, Consts.UTF_8);
HttpPost post = new HttpPost("***");
post.setEntity(entity);
httpClient.execute(post);//登录

HttpGet g = new HttpGet("url");
CloseableHttpResponse r = httpClient.execute(g);//获取子集关注的问题页面测试一下是否登陆成功
System.out.println(EntityUtils.toString(r.getEntity()));
r.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
httpClient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: