HttpClient实现HTTP请求

举报
陈皮的JavaLib 发表于 2021/06/09 23:55:53 2021/06/09
【摘要】 1:开发环境 JDK1.8、Springboot 1 2:项目依赖 "org.apache.httpcomponents:httpclient:4.5.10" 1 3:代码详细 package com.nobody.utils; import java.net.URI; import java.net.URLEncoder; import java.util...

1:开发环境

JDK1.8、Springboot

  
 
  • 1

2:项目依赖

"org.apache.httpcomponents:httpclient:4.5.10"

  
 
  • 1

3:代码详细

package com.nobody.utils;

import java.net.URI;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;

public class HttpClientUtil { private static final Logger LOGGER = LoggerFactory.getLogger(HttpClientUtil.class); private static final String STANDARD_CHARSET = "UTF-8"; /** * GET 若有参则直接拼接URL * * @param headers 请求头参数 * @param params 请求参数 * @param url 请求地址 * @param timeOutInMillis 超时时间(毫秒) * @return */ public static String doGet(Map<String, Object> headers, Map<String, Object> params, String url, int timeOutInMillis) { // 返回结果 String result = null; // 创建Http客户端 CloseableHttpClient httpClient = HttpClientBuilder.create().build(); // 创建Get请求 HttpGet httpGet = null; try { // 请求参数处理(拼接前先将请求参数值encoding,处理一些特殊字符) if (!CollectionUtils.isEmpty(params)) { StringBuffer sb = new StringBuffer(); for (String key : params.keySet()) { sb.append(key).append("=") .append(URLEncoder.encode(params.get(key).toString(), STANDARD_CHARSET)) .append("&"); } String handledParams = sb.substring(0, sb.length() - 1).toString(); httpGet = new HttpGet(url + "?" + handledParams); } else { httpGet = new HttpGet(url); } // 请求头处理 if (!CollectionUtils.isEmpty(headers)) { Set<String> set = headers.keySet(); Iterator<String> it = set.iterator(); while (it.hasNext()) { String key = it.next(); if (null != headers.get(key)) { httpGet.addHeader(key, headers.get(key).toString()); } } } // 设置数据读取超时时间,传输超时时间,链接请求超时时间 if (timeOutInMillis > 0) { RequestConfig requestConfig = RequestConfig.custom() .setSocketTimeout(timeOutInMillis).setConnectTimeout(timeOutInMillis) .setConnectionRequestTimeout(timeOutInMillis).build(); httpGet.setConfig(requestConfig); } // 客户端发送请求并获得响应模型 CloseableHttpResponse response = httpClient.execute(httpGet); // 从响应模型中获取响应实体 HttpEntity responseEntity = response.getEntity(); if (null != responseEntity) { result = EntityUtils.toString(responseEntity, STANDARD_CHARSET); } } catch ( Exception ex) { LOGGER.error("doGet error:", ex); } finally { // 释放资源 httpGet.abort(); if (null != httpClient) { try { httpClient.close(); } catch (Exception ex) { LOGGER.error("doGet httpClient close error:", ex); } } } return result; } /** * GET 若有参形式(使用URI获得HttpGet) * * @param headers 请求头参数 * @param params 请求参数 * @param scheme 请求协议 * @param host 请求IP * @param port 请求端口 * @param path 请求路径 * @param timeOutInMillis 超时时间(毫秒) * @return */ public static String doGet(Map<String, Object> headers, Map<String, Object> params, final String scheme, final String host, final int port, final String path, int timeOutInMillis) { // 返回结果 String result = null; // 创建Http客户端 CloseableHttpClient httpClient = HttpClientBuilder.create().build(); // 创建Get请求 HttpGet httpGet = null; try { URI uri = null; URIBuilder ub = new URIBuilder().setScheme(scheme).setHost(host).setPort(port).setPath(path); // 请求参数处理 if (!CollectionUtils.isEmpty(params)) { List<NameValuePair> nvps = new ArrayList<>(); for (String key : params.keySet()) { nvps.add(new BasicNameValuePair(key, params.get(key).toString())); } ub.setParameters(nvps); } uri = ub.build(); httpGet = new HttpGet(uri); if (!CollectionUtils.isEmpty(headers)) { Set<String> set = headers.keySet(); Iterator<String> it = set.iterator(); while (it.hasNext()) { String key = it.next(); if (null != headers.get(key)) { httpGet.addHeader(key, headers.get(key).toString()); } } } // 设置数据读取超时时间,传输超时时间,链接请求超时时间 if (timeOutInMillis > 0) { RequestConfig requestConfig = RequestConfig.custom() .setSocketTimeout(timeOutInMillis).setConnectTimeout(timeOutInMillis) .setConnectionRequestTimeout(timeOutInMillis).build(); httpGet.setConfig(requestConfig); } // 客户端发送请求并获得响应模型 CloseableHttpResponse response = httpClient.execute(httpGet); // 从响应模型中获取响应实体 HttpEntity responseEntity = response.getEntity(); if (null != responseEntity) { result = EntityUtils.toString(responseEntity, STANDARD_CHARSET); } } catch (Exception ex) { LOGGER.error("doGet error:", ex); } finally { // 释放资源 httpGet.abort(); if (null != httpClient) { try { httpClient.close(); } catch (Exception ex) { LOGGER.error("doGet httpClient close error:", ex); } } } return result; } /** * POST application/x-www-form-urlencoded形式 * * @param headers 请求头参数 * @param params 请求参数 * @param url 请求地址 * @param timeOutInMillis 超时时间(毫秒) * @return */ public static String doPost(String url, Map<String, Object> headers, Map<String, Object> params, int timeOutInMillis) { // 返回结果 String result = null; // 创建Http客户端 CloseableHttpClient httpClient = HttpClientBuilder.create().build(); // 创建Get请求 HttpPost httpPost = null; try { // 请求参数处理(拼接前先将请求参数值encoding,处理一些特殊字符) if (!CollectionUtils.isEmpty(params)) { StringBuffer sb = new StringBuffer(); for (String key : params.keySet()) { sb.append(key).append("=") .append(URLEncoder.encode(params.get(key).toString(), STANDARD_CHARSET)) .append("&"); } String handledParams = sb.substring(0, sb.length() - 1).toString(); httpPost = new HttpPost(url + "?" + handledParams); } else { httpPost = new HttpPost(url); } // 请求头处理 if (!CollectionUtils.isEmpty(headers)) { Set<String> set = headers.keySet(); Iterator<String> it = set.iterator(); while (it.hasNext()) { String key = it.next(); if (null != headers.get(key)) { httpPost.addHeader(key, headers.get(key).toString()); } } } // 设置数据读取超时时间,传输超时时间,链接请求超时时间 if (timeOutInMillis > 0) { RequestConfig requestConfig = RequestConfig.custom() .setSocketTimeout(timeOutInMillis).setConnectTimeout(timeOutInMillis) .setConnectionRequestTimeout(timeOutInMillis).build(); httpPost.setConfig(requestConfig); } // 客户端发送请求并获得响应模型 CloseableHttpResponse response = httpClient.execute(httpPost); // 从响应模型中获取响应实体 HttpEntity responseEntity = response.getEntity(); if (null != responseEntity) { result = EntityUtils.toString(responseEntity, STANDARD_CHARSET); } } catch (Exception ex) { LOGGER.error("doPost error:", ex); } finally { // 释放资源 httpPost.abort(); if (null != httpClient) { try { httpClient.close(); } catch (Exception ex) { LOGGER.error("doPost httpClient close error:", ex); } } } return result; } /** * POST application/x-www-form-urlencoded形式(NameValuePair参数形式) * * @param headers 请求头参数 * @param params 请求参数 * @param url 请求地址 * @param timeOutInMillis 超时时间(毫秒) * @return */ public static String doPostByNvp(String url, Map<String, Object> headers, Map<String, Object> params, int timeOutInMillis) { // 返回结果 String result = null; // 创建Http客户端 CloseableHttpClient httpClient = HttpClientBuilder.create().build(); // 创建Get请求 HttpPost httpPost = null; try { httpPost = new HttpPost(url); // 请求参数处理 if (!CollectionUtils.isEmpty(params)) { List<NameValuePair> nvps = new ArrayList<>(); for (String key : params.keySet()) { nvps.add(new BasicNameValuePair(key, params.get(key).toString())); } httpPost.setEntity(new UrlEncodedFormEntity(nvps, STANDARD_CHARSET)); } // 请求头处理 if (!CollectionUtils.isEmpty(headers)) { Set<String> set = headers.keySet(); Iterator<String> it = set.iterator(); while (it.hasNext()) { String key = it.next(); if (null != headers.get(key)) { httpPost.addHeader(key, headers.get(key).toString()); } } } // 设置数据读取超时时间,传输超时时间,链接请求超时时间 if (timeOutInMillis > 0) { RequestConfig requestConfig = RequestConfig.custom() .setSocketTimeout(timeOutInMillis).setConnectTimeout(timeOutInMillis) .setConnectionRequestTimeout(timeOutInMillis).build(); httpPost.setConfig(requestConfig); } // 客户端发送请求并获得响应模型 CloseableHttpResponse response = httpClient.execute(httpPost); // 从响应模型中获取响应实体 HttpEntity responseEntity = response.getEntity(); if (null != responseEntity) { result = EntityUtils.toString(responseEntity, STANDARD_CHARSET); } } catch (Exception ex) { LOGGER.error("doPost error:", ex); } finally { // 释放资源 httpPost.abort(); if (null != httpClient) { try { httpClient.close(); } catch (Exception ex) { LOGGER.error("doPost httpClient close error:", ex); } } } return result; } /** * POST application/json形式 * * @param headers 请求头参数 * @param jsonObject 请求对象参数 * @param url 请求地址 * @param timeOutInMillis 超时时间(毫秒) * @return */ public static String doPost(Map<String, Object> headers, String jsonObject, String url, int timeOutInMillis) { // 返回结果 String result = null; // 创建Http客户端 CloseableHttpClient httpClient = HttpClientBuilder.create().build(); // 创建Get请求 HttpPost httpPost = null; try { httpPost = new HttpPost(url); // 请求参数处理 if (!StringUtils.isEmpty(jsonObject)) { StringEntity entity = new StringEntity(jsonObject, STANDARD_CHARSET); httpPost.setEntity(entity); // httpPost.addHeader("Content-Type", ContentType.APPLICATION_JSON.getMimeType()); } // 请求头处理 if (!CollectionUtils.isEmpty(headers)) { Set<String> set = headers.keySet(); Iterator<String> it = set.iterator(); while (it.hasNext()) { String key = it.next(); if (null != headers.get(key)) { httpPost.addHeader(key, headers.get(key).toString()); } } } // 设置数据读取超时时间,传输超时时间,链接请求超时时间 if (timeOutInMillis > 0) { RequestConfig requestConfig = RequestConfig.custom() .setSocketTimeout(timeOutInMillis).setConnectTimeout(timeOutInMillis) .setConnectionRequestTimeout(timeOutInMillis).build(); httpPost.setConfig(requestConfig); } // 客户端发送请求并获得响应模型 CloseableHttpResponse response = httpClient.execute(httpPost); // 从响应模型中获取响应实体 HttpEntity responseEntity = response.getEntity(); if (null != responseEntity) { result = EntityUtils.toString(responseEntity, STANDARD_CHARSET); } } catch (Exception ex) { LOGGER.error("doPost error:", ex); } finally { // 释放资源 httpPost.abort(); if (null != httpClient) { try { httpClient.close(); } catch (Exception ex) { LOGGER.error("doPost httpClient close error:", ex); } } } return result; }

}


  
 
  • 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

文章来源: javalib.blog.csdn.net,作者:陈皮的JavaLib,版权归原作者所有,如需转载,请联系作者。

原文链接:javalib.blog.csdn.net/article/details/103975057

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。