HttpUtils.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package com.keystar.plane.inspection.utils;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.apache.http.HttpEntity;
  4. import org.apache.http.client.config.RequestConfig;
  5. import org.apache.http.client.methods.CloseableHttpResponse;
  6. import org.apache.http.client.methods.HttpGet;
  7. import org.apache.http.client.methods.HttpPost;
  8. import org.apache.http.client.utils.URIBuilder;
  9. import org.apache.http.entity.StringEntity;
  10. import org.apache.http.impl.client.CloseableHttpClient;
  11. import org.apache.http.impl.client.HttpClients;
  12. import org.apache.http.util.EntityUtils;
  13. import org.springframework.stereotype.Service;
  14. import java.io.IOException;
  15. import java.net.URI;
  16. import java.util.Map;
  17. import java.util.Set;
  18. @Slf4j
  19. public class HttpUtils {
  20. /**
  21. * http get请求方法
  22. */
  23. public static String doGet(String url,Map<String, String> headers) {
  24. // 创建Httpclient对象
  25. CloseableHttpClient httpclient = HttpClients.createDefault();
  26. String resultString = null;
  27. CloseableHttpResponse response = null;
  28. try {
  29. // 创建url
  30. URIBuilder builder = new URIBuilder(url);
  31. URI uri = builder.build();
  32. // 创建http GET请求
  33. HttpGet httpGet = new HttpGet(uri);
  34. // 设置超时时间
  35. RequestConfig requestConfig = RequestConfig.custom().setConnectionRequestTimeout(3000)
  36. .setSocketTimeout(3000).setConnectTimeout(3000).build();
  37. httpGet.setConfig(requestConfig);
  38. try {
  39. for (Map.Entry<String, String> entry : headers.entrySet()) {
  40. httpGet.addHeader(entry.getKey(), entry.getValue());
  41. }
  42. }catch (Exception e){
  43. }
  44. // // 设置token值
  45. // httpGet.addHeader("Authorization", "eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyIjoie1widXNlcm5hbWVcIjpcInN5c3RlbVwiLFwiaXBcIjpudWxsLFwiaWRcIjotMSxcImp3dFwiOlwiZXlKaGJHY2lPaUpJVXpJMU5pSjkuZXlKMWMyVnlJam9pZTF3aWRYTmxjbTVoYldWY0lqcGNJbk41YzNSbGJWd2lMRndpYVhCY0lqcHVkV3hzTEZ3aWFXUmNJam90TVN4Y0ltcDNkRndpT201MWJHeDlJaXdpYVdGMElqb3hOakk1TkRZMk1qWXhMQ0pxZEdraU9pSlpWRkUxV2xkTmVrOVVUWFJOYWs1cVRVTXdNRTlFV1RKTVYwWnNUVmROZEU1RVp6Rk9WRTVxVGxSbmVFNUhXVFFpTENKbGVIQWlPakUyTWprMU5USTJOakY5LkpVZjBZNVE2SnJVTlZoaXpZQ2dJNWpWVUJVTzluOGhlVnFqTkd4eGdZNHNcIn0iLCJpYXQiOjE2Mjk0NjYyNjEsImp0aSI6Ill6QXpOVFZrWVRZdE5UZGhNeTAwTURVMkxXRTBOVEF0TWpRMk5qVTNabVV4T1RneSIsImV4cCI6Mjc0MDU3NzM3Mn0.peHm3MmYLWyqne1-K-3JHqpZhW5jtQX-STDfgIaNjpI");
  46. // 执行请求
  47. response = httpclient.execute(httpGet);
  48. resultString = EntityUtils.toString(response.getEntity(), "UTF-8");
  49. log.info("get请求:" + EntityUtils.toString(response.getEntity(), "UTF-8"));
  50. log.info("resultString:" + resultString);
  51. // 判断返回状态是否为200
  52. if (response.getStatusLine().getStatusCode() == 200) {
  53. log.info("=====返回成功======");
  54. //return EntityUtils.toString(response.getEntity(), "UTF-8");
  55. }else {
  56. log.info("返回状态:" + response.getStatusLine().getStatusCode());
  57. }
  58. } catch (Exception ignored) {
  59. } finally {
  60. try {
  61. if (response != null) {
  62. response.close();
  63. }
  64. httpclient.close();
  65. } catch (IOException ignored) {
  66. }
  67. }
  68. return resultString;
  69. }
  70. /**
  71. * http post请求方法
  72. */
  73. public static String doPost(String url, Map<String,Object> paramMap, Map<String, String> headers) {
  74. CloseableHttpClient httpclient = HttpClients.createDefault();
  75. try {
  76. // 创建url
  77. URIBuilder builder = new URIBuilder(url);
  78. URI uri = builder.build();
  79. // 创建http post请求
  80. HttpPost httpPost = new HttpPost(uri);
  81. // 设置超时时间
  82. RequestConfig requestConfig = RequestConfig.custom().setConnectionRequestTimeout(3000)
  83. .setSocketTimeout(3000).setConnectTimeout(3000).build();
  84. httpPost.setConfig(requestConfig);
  85. String body = paramToString(paramMap);
  86. StringEntity stringEntity = new StringEntity(body, "utf-8");
  87. httpPost.setEntity(stringEntity);
  88. try {
  89. for (Map.Entry<String, String> entry : headers.entrySet()) {
  90. httpPost.addHeader(entry.getKey(), entry.getValue());
  91. }
  92. }catch (Exception e){
  93. }
  94. httpPost.addHeader("Content-Type","application/json;charset=utf-8");
  95. CloseableHttpResponse apiRes = httpclient.execute(httpPost);
  96. HttpEntity entity = apiRes.getEntity();
  97. // System.out.println("接收到了返回信息:"+content);
  98. return EntityUtils.toString(entity);
  99. } catch (Exception e) {
  100. e.printStackTrace();
  101. }
  102. return null;
  103. }
  104. public static String paramToString(Map<String, Object> paramMap) {
  105. String json;
  106. StringBuffer stringBuffer = new StringBuffer();
  107. //json字符串的第一个位置应该是 {
  108. stringBuffer.append("{");
  109. //去除Map中的所有Key值,放入Set集合中
  110. Set<String> paramKey = paramMap.keySet();
  111. //遍历出每一个key值,然后取出Map中的对应value做非空判断,若非空就进行拼接到stringBuffer中
  112. for (String param : paramKey) {
  113. if (paramMap.get(param) != null) {
  114. stringBuffer.append("\"" + param + "\":\"" + paramMap.get(param).toString().trim() + "\",");
  115. }
  116. }
  117. //若stringBuffer的长度大于2,则表示Map中有非空value并拼接到stringBuffer,那么就要去掉stringBuffer最后位置的逗号,然后再拼接上}即可;
  118. //若stringBuffer的长度小于2,则表示Map中没有非空value拼接到stringBuffer,那么只需给stringBuffer再拼接上}即可
  119. if (stringBuffer.length() > 2) {
  120. String substring = stringBuffer.substring(0, stringBuffer.length() - 1);
  121. json = substring + "}";
  122. } else {
  123. json = stringBuffer.toString() + "}";
  124. }
  125. return json;
  126. }
  127. }