随笔 - 65  文章 - 0  评论 - 3  阅读 - 10万

Hutool-http

  • Maven
1
2
3
4
5
<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>5.7.9</version>
</dependency>
  • 笔记
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import cn.hutool.http.Header;
import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import com.alibaba.fastjson.JSONObject;
import java.util.Arrays;
 
public class Hutool_http {
 
    public static void main(String[] args) {
        //----------------------------  HttpUtil get  ----------------------------
        String result = HttpUtil.get("https://api.doctorxiong.club/v1/fund/position?code=003634");
        System.out.println(JSONObject.parseObject(result));
 
        JSONObject json = new JSONObject();
        json.put("code", "003634");
        String result = HttpUtil.get("https://api.doctorxiong.club/v1/fund/position",json);
        System.out.println(JSONObject.parseObject(result));
 
        //----------------------------  HttpUtil post  ----------------------------
        JSONObject json = new JSONObject();
        json.put("fundType", Arrays.asList("zs"));
        json.put("sort","z");
        json.put("fundCompany", Arrays.asList("80000248"));
        json.put("pageIndex",1);
        json.put("pageSize",5);
        json.put("Content-Type","application/json;charset=UTF-8");
        String result = HttpUtil.post("https://api.doctorxiong.club/v1/fund/rank", JSONObject.toJSONString(json));
        System.out.println(JSONObject.parseObject(result));
 
        //----------------------------  HttpRequest get  ----------------------------
        HttpResponse httpResponse = HttpRequest.get("https://api.doctorxiong.club/v1/fund/position?code=003634").execute();
        System.out.println(httpResponse);
 
        //----------------------------  HttpRequest post  ----------------------------
        JSONObject json = new JSONObject();
        json.put("fundType",Arrays.asList("zs"));
        json.put("sort","z");
        json.put("fundCompany",Arrays.asList("80000248"));
        json.put("pageIndex",1);
        json.put("pageSize",10);
        HttpResponse httpResponse = HttpRequest.post("https://127.0.0.1:8100/service/test")
                //.header(Header.USER_AGENT, "Hutool http")//头信息,多个头信息多次调用此方法即可
                //.setHttpProxy("192.168.1.66", 8032) //配置代理转发
                .body(JSONObject.toJSONString(json))
                .contentType("application/json;charset=UTF-8")
                .timeout(3000)
                .execute();
        System.out.println("--httpResponse--" + httpResponse);
        if(200 == httpResponse.getStatus() ){
            JSONObject responseBody = JSONObject.parseObject(httpResponse.body());
            System.out.println("--responseBody--" + responseBody);
        }else {
            System.out.println("请求失败。");
        }
 
    }
 
}

  

posted on   陌生街中吹起褪色故梦  阅读(1082)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示