首页 > 基础资料 博客日记

【Java】汇总Java中发送HTTP请求的7种方式

2023-07-24 17:59:16基础资料围观259

Java资料网推荐【Java】汇总Java中发送HTTP请求的7种方式这篇文章给大家,欢迎收藏Java资料网享受知识的乐趣

今天在项目中发现一个功能模块是额外调用的外部服务,其采用CloseableHttpClient调用外部url中的接口……

public void handleHttp(String jsonParam, String url) {
    BufferedReader in = null;
    try {
        HttpClient client = HttpClients.createDefault();
        HttpPost request = new HttpPost(url);

        request.addHeader(HTTP.CONTENT_TYPE, "application/json");

        StringEntity s = new StringEntity(jsonParam, Charset.forName("UTF-8"));
        s.setContentEncoding("UTF-8");
        s.setContentType("application/json;charset=UTF-8");
        request.setEntity(s);

        HttpResponse response = client.execute(request);
        int code = response.getStatusLine().getStatusCode();

        in = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "utf-8"));
        StringBuilder sb = new StringBuilder();
        String line = "";
        String NL = System.getProperty("line.separator");
        while ((line = in.readLine()) != null) {
            sb.append(line).append(NL);
        }
        in.close();

        if (code == 200) {
            logger.info("接口:{},请求成功:" + sb.toString(), url);
        } else if (code == 500) {
            throw new TapException("服务器错误:" + sb + ",url:" + url);
        } else {
            throw new TapException("接口未知的情况,code=" + code + "," + sb + ",url:" + url);
        }
    } catch (Exception e) {
        throw new TapException("接口调用出现异常……");
    }
}

CloseableHttpClient HTTP发送请求处理流程:

汇总发送HTTP请求的7种方式:
1HttpURLConnection
使用JDK原生提供的net,无需其他jar包。
2HttpClient
 需要用到commons-httpclient-3.1.jar
3CloseableHttpClient
 需要用到httpclient-4.5.6.jar
4、okhttp
需要用到okhttp-3.10.0.jar
5Socket
使用JDK原生提供的net,无需其他jar包。
6RestTemplate
RestTemplate 是由Spring提供的一个HTTP请求工具。
比传统的ApacheHttpClient便捷许多,能够大大提高客户端的编写效率。
7Feign
spring-cloud-starter-feign

学习1:JAVA发送HTTP请求的多种方式总结
https://blog.csdn.net/liuyunyihao/article/details/125262877?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-1-125262877-blog-108068434.235%5Ev28%5Epc_relevant_t0_download&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-1-125262877-blog-108068434.235%5Ev28%5Epc_relevant_t0_download&utm_relevant_index=2

学习2:SpringBoot调用外部接口的三种方式
https://mp.weixin.qq.com/s/R0-2tvk1WktcLiERqm_1gw

文章来源:https://blog.csdn.net/weixin_42369773/article/details/130050100
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐

标签云