一、HttpClient

HttpClient是Apache HttpComponents 下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包(httpclient-4.4.1.jar)。HttpClient类可以用来发送Http请求(get,post,put,delete)相比传统JDK自带的URLConnection,增加了易用性和灵活性,如下为一个post类型的HTTP请求,参数列表中的header代表HTTP请求的header,params代表参数列表,body代表HTTP请求体

需要导入:import org.apache.http.client.HttpClients等
    public String post(String url,Map<String, String> header, Map<String, Object> params, Map<String, Object> entity, int soTimeout) {
CloseableHttpClient httpclient = HttpClients.createDefault(); //创建一个httpclient
HttpPost httppost = new HttpPost(); //创建一个httppost
String result = null;
try {
//处理params,拼接url
url = joinParam(url, params); //根据需求自己实现该方法 //add request url
if (url != null) {
httppost.setURI(URI.create(url));
} //add header
for (String key : header.keySet()) {
httppost.addHeader(key, header.get(key));
} //add entity
if (entity != null) {
String entityStr = toJSONString(entity); //将map转化为string
StringEntity stringEntity = new StringEntity(entityStr, "UTF-8");
stringEntity.setContentType("text/json");
stringEntity.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
httppost.setEntity(stringEntity);
}
/**
* setConnectTimeout:设置连接超时时间,单位毫秒。
*setConnectionRequestTimeout:设置从connect Manager获取Connection 超时时间,单位毫秒。这个属性是新加的属性,因为目前版本是可以共享连接池的。
*setSocketTimeout:请求获取数据的超时时间,单位毫秒。
*/
RequestConfig requestConfig = RequestConfig.custom()
.setConnectTimeout(soTimeout).setConnectionRequestTimeout(soTimeout)
.setSocketTimeout(soTimeout).build();
httppost.setConfig(requestConfig); CloseableHttpResponse response = null;
try {
//发送post请求
response = httpclient.execute(httppost);
} catch (IOException e) {
e.printStackTrace();
}
try {
// 获取响post响应实体
if (response != null) {
HttpEntity responseEntity = response.getEntity();
if(responseEntity != null) {
result = responseEntity.toString();
if(responseEntity != null) {
result = EntityUtils.toString(responseEntity);
}
}
}
} finally {
if (response != null) {
response.close();
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 关闭连接,释放资源
try {
httpclient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return result;
}

二、老版本HttpClient(commons-httpclient.jar)

进入apache官网下找commons HttpClient包,可以看到一下描述:

The Commons HttpClient project is now end of life, and is no longer being developed. It has been replaced by the Apache HttpComponents project in its HttpClient and HttpCore modules, which offer better performance and more flexibility.

可以看到commons-httpclient.jar已被httpclient.jar取代,官方不再提供commons-httpclient的更新维护服务。以下是使用老版本HttpClient发送一个post请求:

需要导入:import org.apache.commons.httpclient.HttpClient等

    public String doPost(String url, Map<String, String> header, Map<String, Object> entity){
String result = "";
HttpClient httpClient = new HttpClient();
PostMethod postMethod = new PostMethod(url);
try{
//set header
postMethod.addRequestHeader("Content-Type", "application/json");
for (String key : header.keySet()) {
postMethod.addRequestHeader(key, header.get(key));
} //set entity
String paramsStr = toJSONString(entity);
RequestEntity requestEntity = new ByteArrayRequestEntity(paramsStr.getBytes("UTF-8"));
postMethod.setRequestEntity(requestEntity); //get response
int httpStatusCode = httpClient.executeMethod(postMethod);
if (httpStatusCode < 200 || httpStatusCode >= 300) {
throw new Exception("httpStatusCode is not correct! " + httpStatusCode);
}
result = IOUtils.toString(postMethod.getResponseBodyAsStream(), "UTF-8");
}catch (Exception e){
e.printStackTrace();
}finally {
postMethod.releaseConnection();
}
return result;
}

HttpClient基础用法的更多相关文章

  1. PropertyGrid控件由浅入深(二):基础用法

    目录 PropertyGrid控件由浅入深(一):文章大纲 PropertyGrid控件由浅入深(二):基础用法 控件的外观构成 控件的外观构成如下图所示: PropertyGrid控件包含以下几个要 ...

  2. logstash安装与基础用法

    若是搭建elk,建议先安装好elasticsearch 来自官网,版本为2.3 wget -c https://download.elastic.co/logstash/logstash/packag ...

  3. elasticsearch安装与基础用法

    来自官网,版本为2.3 注意elasticsearch依赖jdk,2.3依赖jdk7 下载rpm包并安装 wget -c https://download.elastic.co/elasticsear ...

  4. BigDecimal最基础用法

    BigDecimal最基础用法 用字符串生成的BigDecimal是不会丢精度的. 简单除法. public class DemoBigDecimal { public static void mai ...

  5. Vue组件基础用法

    前面的话 组件(Component)是Vue.js最强大的功能之一.组件可以扩展HTML元素,封装可重用的代码.根据项目需求,抽象出一些组件,每个组件里包含了展现.功能和样式.每个页面,根据自己所需, ...

  6. Smarty基础用法

    一.Smarty基础用法: 1.基础用法如下 include './smarty/Smarty.class.php';//引入smarty类 $smarty = new Smarty();//实例化s ...

  7. 前端自动化测试神器-Katalon的基础用法

    前言 最近由于在工作中需要通过Web端的功能进行一次大批量的操作,数据量大概在5000左右,如果手动处理, 完成一条数据的操作用时在20秒左右的话,大概需要4-5个人/天的工作量(假设一天8小时的工作 ...

  8. Bootstrap fileinput:文件上传插件的基础用法

    官网地址:http://plugins.krajee.com/ 官网提供的样例:http://plugins.krajee.com/file-input/demo 基础用法一 导入核心CSS及JS文件 ...

  9. asyncio 基础用法

    asyncio 基础用法 python也是在python 3.4中引入了协程的概念.也通过这次整理更加深刻理解这个模块的使用 asyncio 是干什么的? asyncio是Python 3.4版本引入 ...

随机推荐

  1. iOS NSString相关问题

    1.NSString对象的创建 // 1.创建不可变字符串 NSString *str1 = @"create string"; #pragma mark 对象方法创建字符串 // ...

  2. caffe学习3——layers

    1 layer是模型的本质,是计算的基本单元.Layers convolve filters, pool, take inner products, apply nonlinearities like ...

  3. Encode Adjacent Letters

    Encode a string by counting the consecutive letter. (i.e., "aaaabbxxxyyz" might become &qu ...

  4. Ubuntu 12.04 LTS 安裝无线网卡驱动

    1,当然,首先下载得到驱动的源代码: 2,解压缩到指定位置,我就是用鼠标拖到 home 里面: 3,进入驱动所在目录 CD ~/mt7610u,(我将解压缩出来的驱动目录改名为 mt7610u 这个了 ...

  5. BZOJ4999:This Problem Is Too Simple!(DFS序&树上差分&线段树动态开点:区间修改单点查询)

    Description 给您一颗树,每个节点有个初始值. 现在支持以下两种操作: 1. C i x(0<=x<2^31) 表示将i节点的值改为x. 2. Q i j x(0<=x&l ...

  6. 向requestAnimationFrame的回调函数中传递参数

    其实跟setTimeout类似,我们知道传参传的是一个函数,那么我们是不是可以用一个匿名函数来包裹这个函数的执行呢function fn(fc){ console.log('fc:',fc) fc++ ...

  7. spring beans 源码解读

    从把spring下下来,导入到eclipse,花了几个小时的时间. 本来壮志雄心的说要,满满深入学习研读spring源码,现在看来还是不太现实,太难懂了,各种依赖,说明都是英文,整个串起来理解,深入研 ...

  8. Codeforces 559C Gerald and Giant Chess【组合数学】【DP】

    LINK 题目大意 有一个wxh的网格,上面有n个黑点,问你从(1,1)走到(w,h)不经过任何黑点的方案数 思路 考虑容斥 先把所有黑点按照x值进行排序方便计算 \(dp_{i}\)表示从起点走到第 ...

  9. windows中查看端口被什么应用程序占用并删除

    windows中查看端口的命令是netstat,具体用法如下: 查看端口信息时可以使用如下命令: netstat -ano 运行结果如下: 当前我的本地13067端口被占用,使用命令如下: c:\&g ...

  10. json对象和json字符串相互转换

    1.将JSON字符串转换为JSON对象 var data = JSON.parse(str); // JSON.parse();方法 console.log(data.name); 2.将JSON对象 ...