HTTP工具类

GitHub代码:HttpUtil.java

摘要:本文介绍在项目中用HttpClient来发送HTTP请求时,对HtttpClient进行的封装,使得我们在项目中使用HttpClient时可以更简单易用。

Maven项目中的pom.xml

添加HttpClient依赖

1
2
3
4
5
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
</dependency>

HttpUtil.java

实现了对HttpClient的封装,代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
package com.csh.util.http;



import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.*;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Map;

/**
* @author James-CSH
* @since 3/14/2017 08:00 AM
*/
public class HttpUtil {
private PoolingHttpClientConnectionManager cm;
private String EMPTY_STR = "";
private String UTF_8 = "UTF-8";

public HttpUtil() {
init(20, 5);
}

public HttpUtil(int maxTotal, int maxPerRoute) {
init(maxTotal, maxPerRoute);
}

/**
* 初始化
* @param maxTotal 最大连接数
* @param maxPerRoute 每个路由最大连接数
*/
private synchronized void init(int maxTotal, int maxPerRoute) {
if (null == cm) {
cm = new PoolingHttpClientConnectionManager();
cm.setMaxTotal(maxTotal);// 整个连接池最大连接数
cm.setDefaultMaxPerRoute(maxPerRoute);// 每路由最大连接数,默认值是2
}
}

private CloseableHttpClient getHttpClient() {
return HttpClients.custom().setConnectionManager(cm).build();
}

/**
* 设置请求头
* @param http 发送的HTTP请求
* @param headers 请求头
* @return 发送的HTTP请求
*/
private HttpRequestBase setHeaders(HttpRequestBase http, Map<String, Object> headers) {
if (null != headers) {
for (Map.Entry<String, Object> param : headers.entrySet()) {
http.addHeader(param.getKey(), String.valueOf(param.getValue()));
}
}
return http;
}

/**
* 将参数转为特定格式
* @param params 参数
* @return
*/
private ArrayList<NameValuePair> covertParams2NVPS(Map<String, Object> params) {
ArrayList<NameValuePair> pairs = new ArrayList<NameValuePair>();
if (null != params) {
for (Map.Entry<String, Object> param : params.entrySet()) {
pairs.add(new BasicNameValuePair(param.getKey(), String.valueOf(param.getValue())));
}
}
return pairs;
}

/**
* 处理Http请求
*
* @param request
* @return
*/
private String getResult(HttpRequestBase request) {
CloseableHttpClient httpClient = getHttpClient();
CloseableHttpResponse response = null;
try {
response = httpClient.execute(request);
HttpEntity entity = response.getEntity();
if (entity != null) {
String result = EntityUtils.toString(entity);
response.close();
return result;
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
response.close();
} catch (IOException e) {
e.printStackTrace();
}
}

return EMPTY_STR;
}

/**
* some http request just return the headers. such as head
* @param request
* @return
*/
private Header[] getHeaders(HttpRequestBase request) {
CloseableHttpClient httpClient = getHttpClient();
CloseableHttpResponse response = null;
try {
response = httpClient.execute(request);
return response.getAllHeaders();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
response.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return null;
}

/**
* 发送GET请求
* @param url 请求路径
* @return 请求结果
* @throws URISyntaxException
*/
public String get(String url) throws URISyntaxException {
return get(url, null);
}

/**
* 发送GET请求
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws URISyntaxException
*/
public String get(String url, Map<String, Object> params) throws URISyntaxException {
return get(url, null, params);
}

/**
* 发送GET请求
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws URISyntaxException
*/
public String get(String url, Map<String, Object> headers, Map<String, Object> params) throws URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
//设置参数
ub.setParameters(covertParams2NVPS(params));
HttpGet httpGet = new HttpGet(ub.build());
//设置请求头
httpGet = (HttpGet) setHeaders(httpGet, headers);

return getResult(httpGet);
}

/**
* 发送POST请求
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String post(String url) throws UnsupportedEncodingException {
return post(url, null);
}

/**
* 发送POST请求
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String post(String url, Map<String, Object> params) throws UnsupportedEncodingException {
return post(url, null, params);
}

/**
* 发送POST请求
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String post(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException {
HttpPost httpPost = new HttpPost(url);
//设置参数
ArrayList<NameValuePair> pairs = covertParams2NVPS(params);
httpPost.setEntity(new UrlEncodedFormEntity(pairs, UTF_8));
//设置请求头
httpPost = (HttpPost) setHeaders(httpPost, headers);
return getResult(httpPost);
}

/**
* 发送PUT请求
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String put(String url) throws UnsupportedEncodingException {
return put(url, null);
}

/**
* 发送PUT请求
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String put(String url, Map<String, Object> params) throws UnsupportedEncodingException {
return put(url, null, params);
}

/**
* 发送PUT请求
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String put(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException {
HttpPut httpPut = new HttpPut(url);
//设置请求参数
ArrayList<NameValuePair> pairs = covertParams2NVPS(params);
httpPut.setEntity(new UrlEncodedFormEntity(pairs, UTF_8));
//设置请求头
httpPut = (HttpPut) setHeaders(httpPut, headers);

return getResult(httpPut);
}

/**
* 发送PATCH请求
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String patch(String url) throws UnsupportedEncodingException {
return patch(url, null);
}

/**
* 发送PATCH请求
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String patch(String url, Map<String, Object> params) throws UnsupportedEncodingException {
return patch(url, null, params);
}

/**
* 发送PATCH请求
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String patch(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException {
HttpPatch httpPatch = new HttpPatch(url);
//设置请求参数
ArrayList<NameValuePair> pairs = covertParams2NVPS(params);
httpPatch.setEntity(new UrlEncodedFormEntity(pairs, UTF_8));
//设置请求头
httpPatch = (HttpPatch) setHeaders(httpPatch, headers);

return getResult(httpPatch);
}

/**
* 发送DELETE请求
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String delete(String url) throws UnsupportedEncodingException, URISyntaxException {
return delete(url, null);
}

/**
* 发送DELETE请求
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public String delete(String url, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
return delete(url, null, params);
}

/**
* 发送DELETE请求
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String delete(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
//设置请求参数
ub.addParameters(covertParams2NVPS(params));
HttpDelete httpDelete = new HttpDelete(ub.build());
//设置请求头
httpDelete = (HttpDelete) setHeaders(httpDelete, headers);

return getResult(httpDelete);
}

/**
* 发送TRACE请求
* 回显服务器收到的请求,主要用于测试或诊断。
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String trace(String url) throws UnsupportedEncodingException, URISyntaxException {
return trace(url, null);
}

/**
* 发送TRACE请求
* 回显服务器收到的请求,主要用于测试或诊断
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String trace(String url, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
return trace(url, null, params);
}

/**
* 发送TRACE请求
* 回显服务器收到的请求,主要用于测试或诊断
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
*/
public String trace(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
//设置请求参数
ub.setParameters(covertParams2NVPS(params));
HttpTrace httpTrace = new HttpTrace(ub.build());
//设置请求头
httpTrace = (HttpTrace) setHeaders(httpTrace, headers);

return getResult(httpTrace);
}

/**
* 发送HEAD请求
* 类似于get请求,只不过返回的响应中没有具体的内容,用于获取报头
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public Header[] head(String url) throws UnsupportedEncodingException, URISyntaxException {
return head(url, null);
}

/**
* 发送HEAD请求
* 类似于get请求,只不过返回的响应中没有具体的内容,用于获取报头
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public Header[] head(String url, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
return head(url, null, params);
}

/**
* 发送HEAD请求
* 类似于get请求,只不过返回的响应中没有具体的内容,用于获取报头
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public Header[] head(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
//设置请求参数
ub.setParameters(covertParams2NVPS(params));
HttpHead httpHead = new HttpHead(ub.build());
//设置请求头
httpHead = (HttpHead) setHeaders(httpHead, headers);

return getHeaders(httpHead);
}

/**
* 发送OPTIONS请求
* 允许客户端查看服务器的性能
* @param url 请求路径
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public String options(String url) throws UnsupportedEncodingException, URISyntaxException {
return options(url, null);
}

/**
* 发送OPTIONS请求
* 允许客户端查看服务器的性能
* @param url 请求路径
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public String options(String url, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
return options(url, null, params);
}

/**
* 发送OPTIONS请求
* 允许客户端查看服务器的性能
* @param url 请求路径
* @param headers 请求头
* @param params 请求参数
* @return 请求结果
* @throws UnsupportedEncodingException
* @throws URISyntaxException
*/
public String options(String url, Map<String, Object> headers, Map<String, Object> params) throws UnsupportedEncodingException, URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
//设置参数
ub.setParameters(covertParams2NVPS(params));
HttpOptions httpOptions = new HttpOptions(ub.build());
//设置请求头
httpOptions = (HttpOptions) setHeaders(httpOptions, headers);

return getResult(httpOptions);
}

}