spring之httpclient doget请求

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 21:02   5019   0

/**
* @param url 请求地址
* @param jsonString 加密后的字符串
* @return
* @throws ClientProtocolException
* @throws IOException 返回请求后的报文 JSON字符串
*/
public static String doGet(String url, String jsonString) throws IOException {

// 创建Httpclient对象
CloseableHttpClient httpClient = HttpClients.createDefault();
CloseableHttpResponse response = null;
String resultString = "";
// 创建参数列表
if (jsonString != null & !"".equals(jsonString)) {
StringEntity strEnt = new StringEntity(jsonString.toString(), "UTF-8");//解决中文乱码问题
strEnt.setContentEncoding("UTF-8");
strEnt.setContentType("application/json");
}
// 创建Http get请求
HttpGet httpGet = new HttpGet(url+"?"+jsonString);
// 执行http请求
response = httpClient.execute(httpGet);
resultString = EntityUtils.toString(response.getEntity(), "UTF-8");
return resultString;
}

转载于:https://www.cnblogs.com/wirr/p/8397729.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP