官方文档 http://hutool.cn/docs/#/http/Http请求-HttpRequest
maven依赖
<!--Hutool-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.16</version>
</dependency>
使用
1.httpUtil使用post和get请求
String url = "https://xxx/xx";
Map<String, Object> map = new HashMap<>();
map.put("A", 100);
map.put("B", 200);
HashMap<String, String> headers = new HashMap<>();
headers.put("xxx", xxx);
String result= HttpUtil.createGet(url).addHeaders(headers).form(map).execute().body();
String result= HttpUtil.createPost(url).addHeaders(headers).form(map).execute().body();
String url = "https://xxx/delete/"+id;
HashMap<String, String> headers = new HashMap<>();
headers.put("xxx", xxx);
String result= HttpUtil.createRequest(Method.DELETE, url).addHeaders(headers).execute().body();
HTTP请求头:参考文章
2.Http请求-HttpRequest 本质上,HttpUtil中的get和post工具方法都是HttpRequest对象的封装,因此如果想更加灵活操作Http请求,可以使用HttpRequest。
String result2 = HttpRequest.post(url)
.header(Header.USER_AGENT, "Hutool http")
.form(paramMap)
.timeout(20000)
.execute().body();
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);
String json = ...;
String result2 = HttpRequest.post(url)
.body(json)
.execute().body();
如果有地方要求使用HTTP验证,可以使用basicAuth
String JPUSH_APP_KEY = "";
String JPUSH_MASTER_SECRET = "";
String result = HttpRequest.post("https://xxxx")
.basicAuth(JPUSH_APP_KEY, JPUSH_MASTER_SECRET)
.body(param.toString())
.timeout(20000)
.execute().body();
其它自定义项
同样,我们通过HttpRequest可以很方便的做以下操作:
- 指定请求头
- 自定义Cookie(cookie方法)
- 指定是否keepAlive(keepAlive方法)
- 指定表单内容(form方法)
- 指定请求内容,比如rest请求指定JSON请求体(body方法)
- 超时设置(timeout方法)
- 指定代理(setProxy方法)
- 指定SSL协议(setSSLProtocol)
- 简单验证(basicAuth方法)
|