java调用第三方接口

java调用接口

...
	/** * 日志 */
	private final static Logger LOGGER = LoggerFactory.getLogger(***.class);
...

public void obtain(Map<String,Object> param,String url){
		//调用接口前业务处理




		// 获得Http客户端
		CloseableHttpClient httpClient = HttpClientBuilder.create().build();
		HttpPost httpPost = new HttpPost(url);
		//设置参数格式
		httpPost.setHeader("Content-Type", "application/json;charset=utf8");
		//将参数map转换为json字符串,JsonUtil为json转换工具,请自行分装
		String strJsonParam = JsonUtil.objectToJson(param);
		CloseableHttpResponse response = null;
		try {
			StringEntity strEntity = new StringEntity(strJsonParam);
			httpPost.setEntity(strEntity);
			response = httpClient.execute(httpPost);
			HttpEntity responseEntity = response.getEntity();
			String strResponseEntity = EntityUtils.toString(responseEntity);
			JSONObject jsonObject = JSONObject.parseObject(strResponseEntity);
			//获得返回值后的业务处理



			LOGGER.info("调用‘获取CIM接口’成功");
		}catch (Exception e) {
			LOGGER.error("调用‘获取CIM接口’出错:",e);
		}finally {
			try {
				// 释放资源
				if (httpClient != null) {
					httpClient.close();
				}
				if (response != null) {
					response.close();
				}
			} catch (IOException e) {
				LOGGER.error("释放资源出错:",e);
			}
		}
	}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值