Hutool工具类之HttpUtil使用Https

关于Hutool工具类之HttpUtil如何使用可以参考官方文档Hutool之HttpUtil

其实使用Http和Https使用的方式是一样的。

建议大家可以看看HttpUtil的源码,感觉设计的挺不错的。

导入Maven依赖

1
2
3
4
5
 <dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>4.1.0</version>
</dependency>

编写测试类(使用Junit单元测试)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
   @Test
public void testHttps() throws Exception {

JSONObject json = new JSONObject();
json.put("username", "1332788xxxxxx");
json.put("password", "123456.");

String result = HttpRequest.post("https://api2.bmob.cn/1/users")
.header("Content-Type", "application/json")
.header("X-Bmob-Application-Id","2f0419a31f9casdfdsf431f6cd297fdd3e28fds4af")
.header("X-Bmob-REST-API-Key","1e03efdas82178723afdsafsda4be0f305def6708cc6")
.body(json)
.execute().body();


System.out.println(result);


}

方法解释(上面采用的是一种叫链式编程的方式):
header对应的是请求头。
body对应的是请求体(包含参数和参数值)。
HttpRequest里面包含Post、GET、Delete、Put等常用的RestFul方式。

打印如下:

1
{"createdAt":"2019-04-30 10:42:07","objectId":"6cfdb77081","sessionToken":"269e433440c9e65b8058d016df703ccb"}

文章目录
  1. 导入Maven依赖
  2. 编写测试类(使用Junit单元测试)