HttpClient的使用

HttpClient的使用----传递复杂参数

		//获取CloseableHttpClient 对象
        CloseableHttpClient httpClient = HttpClientBuilder.create().build();
        //构造一个post请求对象
        HttpPost httpPost = new HttpPost(url);//此处可以进行url传递参数
        //构建StringEntity 对象
        StringEntity entity = new StringEntity(s2, "UTF-8");//s2为对象的json串格式
        //将json格式参数放入请求体中
        httpPost.setEntity(entity);
        //设置请求头
        httpPost.setHeader("Content-Type", "application/json;charset=utf8");
        CloseableHttpResponse response = null;
        String result = "";
        try {
        	//执行post请求
            response = httpClient.execute(httpPost);
            //获取返回结果
            HttpEntity responseEntity = response.getEntity();
            result = EntityUtils.toString(responseEntity);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                // 释放资源
                if (httpClient != null) {
                    httpClient.close();
                }
                if (response != null) {
                    response.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值