大家好,又见面了,我是你们的朋友全栈君。
String response = null;
// 客户端接口请求路径
String url = EspConfig.getClientBaseUrl() + ClientUtil.CLIENT_METHODNAME;
// 创建请求
CloseableHttpClient httpclient = HttpClientBuilder.create().build();
HttpPost post = new HttpPost(url);
// 配置请求
post.setHeader("Content-Type", "application/json;charset=UTF-8");
StringEntity stringEntity = new StringEntity(JSON.toJSONString(proScheduleVO), "utf-8");
stringEntity.setContentEncoding("utf-8");
stringEntity.setContentType("application/json");
post.setEntity(stringEntity);
try {
// 执行请求获取响应
HttpResponse res = httpclient.execute(post);
log.info("======"+res.getStatusLine().getStatusCode());
if (res.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
response = EntityUtils.toString(res.getEntity());
}
//判断返回是否为空
if(response==null){
throw new NullPointerException("推送失败");
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
// 转换成返回对象
log.info("======"+response);
JSONObject jsonObj = JSON.parseObject(response);
log.info("====="+jsonObj.get("resultCode").toString());
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/127141.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...