初步使用HttpClient

本文介绍如何从旧版本的HttpClient过渡到4.5版本,包括使用新的CloseableHttpClient和CloseableHttpResponse替代DefaultHttpClient和HttpResponse。通过示例代码展示了如何设置请求头、配置请求超时及处理响应。
摘要由CSDN通过智能技术生成

刚刚使用HttpClient想稍微的总结一下。

发现引入最新版本4.5,DefaultHttpClient等老版本常用的类已经过时了,不推荐使用了;去官网看了一下在4.3之后就抛弃了。官方推荐使用  DefaultHttpClient --> CloseableHttpClientHttpResponse --> CloseableHttpResponse 。
    public static void main(String[] args) {

        CloseableHttpClient httpClient = null;
        CloseableHttpResponse response = null;

        //实例化CloseableHttpClient,并设置请求头
        httpClient = HttpClients.custom().addInterceptorLast(new HttpRequestInterceptor() {
            @Override
            public void process(HttpRequest request, HttpContext context) throws HttpException, IOException {

            }
        }).build();
        //使用Get请求方式,Post的话使用HttpPost
        HttpGet httpGet = new HttpGet("http://apis.baidu.com/netpopo/weather/city?apikey=9cb67c01a7268662e9347952e7e11978");
        //设置请求的参数,如请求的超时时间和客户端响应的时间
        RequestConfig requestConfig= RequestConfig.custom().setConnectTimeout(2000).setSocketTimeout(2000).build();
       //把RequestConfig实例设置到httpget中
        httpGet.setConfig(requestConfig);
        try {
            //发起请求
            response = httpClient.execute(httpGet);
            //判断请求状态是否成功
            if( response.getStatusLine().getStatusCode() == HttpStatus.SC_OK ){
               //获取返回的结果
                HttpEntity httpEntity = response.getEntity();
                //EntityUtils.toString把返回结果抓换为字符串
                System.out.println("response:"+ EntityUtils.toString(httpEntity));
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值