-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathHttpClientUtil.java
48 lines (43 loc) · 1.3 KB
/
HttpClientUtil.java
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
package com.h2t.study.util;
import com.alibaba.fastjson.JSONObject;
import com.h2t.study.interceptor.HttpClientTraceIdInterceptor;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import java.io.IOException;
/**
* HttpClient工具类
*
* @author hetiantian
* @version 1.0
* @Date 2020/03/19 15:42
*/
public class HttpClientUtil {
private static CloseableHttpClient httpClient = HttpClientBuilder.create()
.addInterceptorFirst(new HttpClientTraceIdInterceptor())
.build();
/**
* GET请求
*
* @param url 请求地址
* @return
*/
public static String doGet(String url) {
HttpGet httpGet = new HttpGet(url);
CloseableHttpResponse response = null;
try {
response = httpClient.execute(httpGet);
} catch (IOException e) {
e.printStackTrace();
}
String result = null;
try {
result = EntityUtils.toString(response.getEntity());
} catch (IOException e) {
e.printStackTrace();
}
return JSONObject.toJSONString(result);
}
}