HttpClient使用演示

新建Empty Project

在这里插入图片描述

项目设置

在这里插入图片描述

新建maven工程模块

不要勾选Create from archetype

在这里插入图片描述

模块名称&坐标

在这里插入图片描述

pom.xml

  • httpclient
  • test启动器
  • web启动器
<!--所有的SpringBoot应用都要以该工程为父工程-->
<parent>
    <artifactId>spring-boot-starter-parent</artifactId>
    <groupId>org.springframework.boot</groupId>
    <version>2.0.6.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.1</version>
    </dependency>
</dependencies>

HttpClient测试类

  • 这里分别测试了get请求和post请求
public class HttpTests {

    CloseableHttpClient httpClient;

    @Before
    public void init() {
        httpClient = HttpClients.createDefault();
    }

    @Test
    public void testGet() throws IOException {
        HttpGet request = new HttpGet("http://www.baidu.com");
        String response = this.httpClient.execute(request, new BasicResponseHandler());
        System.out.println(response);
    }

    @Test
    public void testPost() throws IOException {
        HttpPost request = new HttpPost("https://www.oschina.net");
        request.setHeader("User-Agent",
                "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36");
        String response = this.httpClient.execute(request, new BasicResponseHandler());
        System.out.println(response);
    }
}

测试访问

控制台输出结果如下

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-NhYUpgNv-1599449143164)(HttpClient使用演示.assets/image-20200907112400905.png)]

序列化与反序列化

springboot项目自动配置了jaskson,这里直接使用。

(1)在HttpTests类中添加

private static final ObjectMapper MAPPER = new ObjectMapper();

(2)然后添加测试方法

  • 这里访问http://localhost:9090/user/hello/45会返回一个User对象,需要在新建pojo包,然后定义一个User对象(需要实现Serialization接口)。

  • MAPPER.readValue(response, User.class)

  • MAPPER.writeValueAsString(user)

@Test
public void testGetPojo() throws IOException {
    HttpGet request = new HttpGet("http://localhost:9090/user/hello/45");
    String response = this.httpClient.execute(request, new BasicResponseHandler());
    System.out.println(response);
    User user = MAPPER.readValue(response, User.class);//使用ObjectMapper对字符串进行反序列化
    System.out.println(user);
    String string = MAPPER.writeValueAsString(user); //序列化
    System.out.println(string);
}

(3)测试

可以看见json字符串被反序列化为User对象

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值