HttpClient工具类

x33g5p2x  于2022-07-05 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(469)

pom

  1. <!--发送http请求-->
  2. <dependency>
  3. <groupId>org.apache.httpcomponents</groupId>
  4. <artifactId>httpclient</artifactId>
  5. </dependency>

HttpClientUtils

  1. import org.apache.http.Consts;
  2. import org.apache.http.HttpEntity;
  3. import org.apache.http.NameValuePair;
  4. import org.apache.http.client.ClientProtocolException;
  5. import org.apache.http.client.entity.UrlEncodedFormEntity;
  6. import org.apache.http.client.methods.*;
  7. import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
  8. import org.apache.http.conn.ssl.SSLContextBuilder;
  9. import org.apache.http.conn.ssl.TrustStrategy;
  10. import org.apache.http.entity.StringEntity;
  11. import org.apache.http.impl.client.CloseableHttpClient;
  12. import org.apache.http.impl.client.HttpClients;
  13. import org.apache.http.message.BasicNameValuePair;
  14. import org.apache.http.ssl.SSLContexts;
  15. import org.apache.http.util.EntityUtils;
  16. import javax.net.ssl.SSLContext;
  17. import java.io.File;
  18. import java.io.FileInputStream;
  19. import java.io.IOException;
  20. import java.security.KeyStore;
  21. import java.security.cert.CertificateException;
  22. import java.security.cert.X509Certificate;
  23. import java.text.ParseException;
  24. import java.util.HashMap;
  25. import java.util.LinkedList;
  26. import java.util.List;
  27. import java.util.Map;
  28. /**
  29. * http请求客户端
  30. *
  31. * @author qy
  32. *
  33. */
  34. public class HttpClient {
  35. private String url;
  36. private Map<String, String> param;
  37. private int statusCode;
  38. private String content;
  39. private String xmlParam;
  40. private boolean isHttps;
  41. private boolean isCert = false;
  42. //证书密码 微信商户号(mch_id)
  43. private String certPassword;
  44. public boolean isHttps() {
  45. return isHttps;
  46. }
  47. public void setHttps(boolean isHttps) {
  48. this.isHttps = isHttps;
  49. }
  50. public boolean isCert() {
  51. return isCert;
  52. }
  53. public void setCert(boolean cert) {
  54. isCert = cert;
  55. }
  56. public String getXmlParam() {
  57. return xmlParam;
  58. }
  59. public void setXmlParam(String xmlParam) {
  60. this.xmlParam = xmlParam;
  61. }
  62. public HttpClient(String url, Map<String, String> param) {
  63. this.url = url;
  64. this.param = param;
  65. }
  66. public HttpClient(String url) {
  67. this.url = url;
  68. }
  69. public String getCertPassword() {
  70. return certPassword;
  71. }
  72. public void setCertPassword(String certPassword) {
  73. this.certPassword = certPassword;
  74. }
  75. public void setParameter(Map<String, String> map) {
  76. param = map;
  77. }
  78. public void addParameter(String key, String value) {
  79. if (param == null)
  80. param = new HashMap<String, String>();
  81. param.put(key, value);
  82. }
  83. public void post() throws ClientProtocolException, IOException {
  84. HttpPost http = new HttpPost(url);
  85. setEntity(http);
  86. execute(http);
  87. }
  88. public void put() throws ClientProtocolException, IOException {
  89. HttpPut http = new HttpPut(url);
  90. setEntity(http);
  91. execute(http);
  92. }
  93. public void get() throws ClientProtocolException, IOException {
  94. if (param != null) {
  95. StringBuilder url = new StringBuilder(this.url);
  96. boolean isFirst = true;
  97. for (String key : param.keySet()) {
  98. if (isFirst)
  99. url.append("?");
  100. else
  101. url.append("&");
  102. url.append(key).append("=").append(param.get(key));
  103. }
  104. this.url = url.toString();
  105. }
  106. HttpGet http = new HttpGet(url);
  107. execute(http);
  108. }
  109. /**
  110. * set http post,put param
  111. */
  112. private void setEntity(HttpEntityEnclosingRequestBase http) {
  113. if (param != null) {
  114. List<NameValuePair> nvps = new LinkedList<NameValuePair>();
  115. for (String key : param.keySet())
  116. nvps.add(new BasicNameValuePair(key, param.get(key))); // 参数
  117. http.setEntity(new UrlEncodedFormEntity(nvps, Consts.UTF_8)); // 设置参数
  118. }
  119. if (xmlParam != null) {
  120. http.setEntity(new StringEntity(xmlParam, Consts.UTF_8));
  121. }
  122. }
  123. private void execute(HttpUriRequest http) throws ClientProtocolException,
  124. IOException {
  125. CloseableHttpClient httpClient = null;
  126. try {
  127. if (isHttps) {
  128. if(isCert) {
  129. //TODO 需要完善
  130. FileInputStream inputStream = new FileInputStream(new File(ConstantPropertiesUtils.CERT));
  131. KeyStore keystore = KeyStore.getInstance("PKCS12");
  132. char[] partnerId2charArray = certPassword.toCharArray();
  133. keystore.load(inputStream, partnerId2charArray);
  134. SSLContext sslContext = SSLContexts.custom().loadKeyMaterial(keystore, partnerId2charArray).build();
  135. SSLConnectionSocketFactory sslsf =
  136. new SSLConnectionSocketFactory(sslContext,
  137. new String[] { "TLSv1" },
  138. null,
  139. SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
  140. httpClient = HttpClients.custom().setSSLSocketFactory(sslsf).build();
  141. } else {
  142. SSLContext sslContext = new SSLContextBuilder()
  143. .loadTrustMaterial(null, new TrustStrategy() {
  144. // 信任所有
  145. public boolean isTrusted(X509Certificate[] chain,
  146. String authType)
  147. throws CertificateException {
  148. return true;
  149. }
  150. }).build();
  151. SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
  152. sslContext);
  153. httpClient = HttpClients.custom().setSSLSocketFactory(sslsf)
  154. .build();
  155. }
  156. } else {
  157. httpClient = HttpClients.createDefault();
  158. }
  159. CloseableHttpResponse response = httpClient.execute(http);
  160. try {
  161. if (response != null) {
  162. if (response.getStatusLine() != null)
  163. statusCode = response.getStatusLine().getStatusCode();
  164. HttpEntity entity = response.getEntity();
  165. // 响应内容
  166. content = EntityUtils.toString(entity, Consts.UTF_8);
  167. }
  168. } finally {
  169. response.close();
  170. }
  171. } catch (Exception e) {
  172. e.printStackTrace();
  173. } finally {
  174. httpClient.close();
  175. }
  176. }
  177. public int getStatusCode() {
  178. return statusCode;
  179. }
  180. public String getContent() throws ParseException, IOException {
  181. return content;
  182. }
  183. }

初始化常量Bean

获取配置文件信息并初始化Bean

  1. @Component
  2. public class ConstantPropertiesUtils implements InitializingBean {
  3. @Value("${weixin.appid}")
  4. private String appid;
  5. @Value("${weixin.partner}")
  6. private String partner;
  7. @Value("${weixin.partnerkey}")
  8. private String partnerkey;
  9. public static String APPID;
  10. public static String PARTNER;
  11. public static String PARTNERKEY;
  12. @Override
  13. public void afterPropertiesSet() throws Exception {
  14. APPID = appid;
  15. PARTNER = partner;
  16. PARTNERKEY = partnerkey;
  17. }
  18. }

高性能云服务器

精品线路独享带宽,毫秒延迟,年中盛惠 1 折起

相关文章