• 极简的Http请求client推荐-OkHttp


    前言

    在Java的世界中,Http客户端之前一直是Apache家的HttpClient占据主导,但是由于此包较为庞大,API又比较难用,因此并不使用很多场景。而新兴的OkHttp、Jodd-http固然好用,但是面对一些场景时,学习成本还是有一些的。很多时候,我们想追求轻量级的Http客户端,并且追求简单易用。而OKHttp
    是一套处理 HTTP 网络请求的依赖库,由 Square 公司设计研发并开源,目前可以在 Java 和 Kotlin 中使用。对于 Android App
    来说,OkHttp 现在几乎已经占据了所有的网络请求操作,对于服务器端请求外部接口也是必备的选择 。针对OKHttp
    OkHttpUtil做了一层封装,使Http请求变得无比简单。

    OKHttpUtil 功能

    • 根据URL自动判断是请求HTTP还是HTTPS,不需要单独写多余的代码。
    • 默认情况下Cookie自动记录,比如可以实现模拟登录,即第一次访问登录
    • URL后后续请求就是登录状态。
    • 自动识别304跳转并二次请求
    • 支持代理配置
    • 支持referer配置
    • 支持User-Agent配置
    • 自动识别并解压Gzip格式返回内容
    • 支持springboot 配置文件
    • 极简的封装调用

    OKHttpUtil使用

    maven引入

    <dependency>
        <groupId>io.github.admin4j</groupId>
        <artifactId>http</artifactId>
        <version>0.4.0</version>
    </dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    OKHttpUtil 版本查看
    https://search.maven.org/artifact/io.github.admin4j/http

    GET 请求

    最简单的使用

    Response response = HttpUtil.get("https://github.com/search", Pair.of("q", "okhttp"));
    System.out.println("response = " + response);
    
    • 1
    • 2

    POST 请求

            # JSON 格式的body
            Response post = HttpUtil.post("https://oapi.dingtalk.com/robot/send?access_token=27f5954ab60ea8b2e431ae9101b1289c138e85aa6eb6e3940c35ee13ff8b6335", "{\"msgtype\": \"text\",\"text\": {\"content\":\"【反馈提醒】我就是我, 是不一样的烟火\"}}");
            System.out.println("post = " + post);
            # form 请求
            Map<String, Object> formParams = new HashMap<>(16);
            formParams.put("username", "admin");
            formParams.put("password", "admin123");
            Response response = HttpUtil.postForm("http://192.168.1.13:9100/auth/login",
                            formParams
            );
            System.out.println("response = " + response);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    返回格式为JSON的 可以使用 HttpJsonUtil 自动返回JsonObject。

            JSONObject object=HttpJsonUtil.get("https://github.com/search",
            Pair.of("q","http"),
            Pair.of("username","agonie201218"));
            System.out.println("object = "+object);
    
    • 1
    • 2
    • 3
    • 4

    文件上传

            File file=new File("C:\\Users\\houxian1103\\Downloads\\Sql.txt");
            Map<String, Object> formParams=new HashMap<>();
            formParams.put("key","test");
            formParams.put("file",file);
            formParams.put("token","WXyUseb-D4sCum-EvTIDYL-mEehwDtrSBg-Zca7t:qgOcR2gUoKmxt-VnsNb657Oatzo=:eyJzY29wZSI6InpoYW56aGkiLCJkZWFkbGluZSI6MTY2NTMwNzUxNH0=");
            Response response=HttpUtil.upload("https://upload.qiniup.com/",formParams);
            System.out.println(response);
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    下载文件

       HttpUtil.down("https://gitee.com/admin4j/common-http","path/");
    
    
    • 1
    • 2

    HttpRequest 链式请求

    
    # get
            Response response=HttpRequest.get("https://search.gitee.com/?skin=rec&type=repository")
            .queryMap("q","admin4j")
            .header(HttpHeaderKey.USER_AGENT,"admin4j")
            .execute();
            System.out.println("response = "+response);
    
            # post form
            Response response=HttpRequest.get("http://192.168.1.13:9100/auth/login")
            .queryMap("q","admin4j")
            .header(HttpHeaderKey.USER_AGENT,"admin4j")
            .form("username","admin")
            .form("password","admin123")
            .execute();
            System.out.println("response = "+response);
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    在 Springboot 中使用

    
    <dependency>
        <groupId>io.github.admin4j</groupId>
        <artifactId>common-http-starter</artifactId>
        <version>0.4.0</version>
    </dependency>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    OkHttp进行个性化配置

    public class HttpConfig {
    
        /**
         * 日志等级
         */
        private HttpLoggingInterceptor.Level loggLevel = HttpLoggingInterceptor.Level.BODY;
    
        /**
         * 读取超时时间,秒
         */
        private long readTimeout = 30;
        /**
         * 链接超时时间
         */
        private long connectTimeout = 30;
    
        private boolean followRedirects = false;
    
        /**
         * 最大的连接数
         */
        private int maxIdleConnections = 5;
    
        /**
         * 最大的kepAlive 时间 秒
         */
        private long keepAliveDuration = 5;
    
        private String userAgent = "OKHTTP";
        /**
         * 是否支持cookie
         */
        private boolean cookie = false;
        private ProxyConfig proxy;
    
    
        @Data
        public static class ProxyConfig {
    
            private Proxy.Type type = Proxy.Type.HTTP;
            private String host;
            private Integer port = 80;
            private String userName;
            private String password;
        }
    }
    
    
    • 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

    总结

    通过上面的使用上来看 OkHttp 比原来的HttpClient 简单了许多。

  • 相关阅读:
    SCB-Dataset3 公开 学生课堂行为数据集: A Benchmark for Detecting Student Classroom Behavior
    MATLAB实现函数拟合
    Nginx安装
    MATLAB中线性方程组计算
    《用Go语言自制解释器》之第3章 求值
    RubyMine 2023:让Ruby编程变得更简单 mac/win版
    el-dialog__body的border-radius属性失效解决思路
    JavaScript基础: 异步
    Flink学习4:flink技术栈
    Docker命令实战-打包镜像并发布到docker hub
  • 原文地址:https://blog.csdn.net/houxian1103/article/details/128178338