码迷,mamicode.com
首页 > Web开发 > 详细

HTTPClient基本使用

时间:2019-08-20 19:03:32      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:--   cep   get请求   uil   ble   使用   highlight   图片   utf-8   

官方网站:https://hc.apache.org/

使用maven,在xml中引用

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

第一个demo

 

第一个.java文件

package com.httpclient.demo;

import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import org.testng.annotations.Test;

import java.io.IOException;

public class HttpClientDemo {
    @Test
    public void test01() {
        //创建get请求
        String uri = "https://www.baidu.com";
        HttpGet get = new HttpGet(uri);
        //获取http客户端
        CloseableHttpClient client = HttpClientBuilder.create().build();
        //响应模型
        CloseableHttpResponse response = null;
        try {
            //由http客户端,发送get请求
            response = client.execute(get);
            //从响应中,获取响应实体
            HttpEntity respEntity = response.getEntity();
            String result = EntityUtils.toString(respEntity, "utf-8");
            System.out.println(result);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 执行结果:

技术图片

 

HTTPClient基本使用

标签:--   cep   get请求   uil   ble   使用   highlight   图片   utf-8   

原文地址:https://www.cnblogs.com/starstarstar/p/11384628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!