HttpTools.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.persagy.filemove.util;
  2. import com.alibaba.fastjson.JSONObject;
  3. import org.apache.http.HttpEntity;
  4. import org.apache.http.NameValuePair;
  5. import org.apache.http.client.config.RequestConfig;
  6. import org.apache.http.client.entity.UrlEncodedFormEntity;
  7. import org.apache.http.client.methods.CloseableHttpResponse;
  8. import org.apache.http.client.methods.HttpGet;
  9. import org.apache.http.client.methods.HttpPost;
  10. import org.apache.http.client.methods.HttpUriRequest;
  11. import org.apache.http.entity.ByteArrayEntity;
  12. import org.apache.http.entity.FileEntity;
  13. import org.apache.http.entity.InputStreamEntity;
  14. import org.apache.http.entity.StringEntity;
  15. import org.apache.http.impl.client.CloseableHttpClient;
  16. import org.apache.http.impl.client.HttpClients;
  17. import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
  18. import org.apache.http.message.BasicNameValuePair;
  19. import org.apache.http.util.EntityUtils;
  20. import java.io.File;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. import java.util.Map;
  26. public class HttpTools {
  27. private final static PoolingHttpClientConnectionManager CONNECTION_MANAGER = new PoolingHttpClientConnectionManager();
  28. private final static CloseableHttpClient HTTP_CLIENT;
  29. private static final String UTF8 = "utf-8";
  30. static {
  31. // 设置整个连接池最大连接数 根据自己的场景决定
  32. CONNECTION_MANAGER.setMaxTotal(100);
  33. // 每个路由(网站)的最大连接数
  34. CONNECTION_MANAGER.setDefaultMaxPerRoute(50);
  35. RequestConfig requestConfig = RequestConfig.custom()
  36. // 与远程主机连接建立时间,三次握手完成时间
  37. .setConnectTimeout(5000)
  38. // 建立连接后,数据包传输过程中,两个数据包之间间隔的最大时间
  39. .setSocketTimeout(10000)
  40. // httpClient使用连接池来管理连接,这个时间就是从连接池获取连接的超时时间
  41. .setConnectionRequestTimeout(5000).build();
  42. HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONNECTION_MANAGER)
  43. .setDefaultRequestConfig(requestConfig).build();
  44. }
  45. public static String httpGetRequest(String url) throws Exception {
  46. HttpGet httpGet = new HttpGet(url);
  47. return sendRequest(httpGet);
  48. }
  49. public static String httpPostRequest(String url) throws Exception {
  50. HttpPost httpPost = new HttpPost(url);
  51. return sendRequest(httpPost);
  52. }
  53. public static String httpPostJson(String url, JSONObject param) throws IOException {
  54. HttpPost httpPost = new HttpPost(url);
  55. httpPost.addHeader("Content-Type", "application/json;charset=utf-8");
  56. httpPost.setEntity(new StringEntity(param.toJSONString(), UTF8));
  57. String respContent = sendRequest(httpPost);
  58. return respContent;
  59. }
  60. public static String httpPostJson(String url, Map<Object, Object> params) throws IOException {
  61. HttpPost httpPost = new HttpPost(url);
  62. httpPost.addHeader("Content-Type", "application/json;charset=utf-8");
  63. httpPost.setEntity(new StringEntity(JsonTools.beanToJson(params), UTF8));
  64. String respContent = sendRequest(httpPost);
  65. return respContent;
  66. }
  67. /**
  68. *
  69. * @param url http地址
  70. * @param params 表单参数{"key":"jsonString"}
  71. * @return
  72. * @throws IOException
  73. */
  74. public static String httpPostForm(String url, Map<String, Object> params) throws IOException {
  75. HttpEntity reqEntity = null;
  76. List<NameValuePair> pairs = new ArrayList<NameValuePair>(params.size());
  77. for(Map.Entry<String,Object> entry : params.entrySet()){
  78. pairs.add(new BasicNameValuePair(entry.getKey(),entry.getValue().toString()));
  79. }
  80. reqEntity = new UrlEncodedFormEntity(pairs,"UTF-8");
  81. HttpPost httpPost = new HttpPost(url);
  82. if(reqEntity!=null){
  83. httpPost.setEntity(reqEntity);
  84. }
  85. String respContent = sendRequest(httpPost);
  86. return respContent;
  87. }
  88. private static String sendRequest(HttpUriRequest request) throws IOException {
  89. CloseableHttpResponse response = HTTP_CLIENT.execute(request);
  90. return EntityUtils.toString(response.getEntity(), UTF8);
  91. }
  92. public static String httpPostRequest(String url, InputStream is) throws Exception {
  93. HttpPost httpPost = new HttpPost(url);
  94. httpPost.setEntity(new InputStreamEntity(is));
  95. return sendRequest(httpPost);
  96. }
  97. public static String httpPostRequest(String url, byte[] bytes) throws Exception {
  98. HttpPost httpPost = new HttpPost(url);
  99. httpPost.setEntity(new ByteArrayEntity(bytes));
  100. return sendRequest(httpPost);
  101. }
  102. public static String httpPostRequest(String url, File file) throws Exception {
  103. HttpPost httpPost = new HttpPost(url);
  104. httpPost.setEntity(new FileEntity(file));
  105. return sendRequest(httpPost);
  106. }
  107. public static byte[] httpGetFile(String url) throws Exception {
  108. HttpGet httpGet = new HttpGet(url);
  109. CloseableHttpResponse response = HTTP_CLIENT.execute(httpGet);
  110. return EntityUtils.toByteArray(response.getEntity());
  111. }
  112. }