当前位置: 首页 > article >正文

Java GET请求 请求参数在Body中使用Json格式传参

业务需要调个三方接口

使用GET请求方式

但是!请求参数不在Query中,竟然在Body中,使用Json格式传参

在API调试工具里面可以调通

在java代码里,死活调不通

网上搜了搜,找到一个靠谱的,记录一下

import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import java.net.URI;

public class HttpGetWithEntity extends HttpEntityEnclosingRequestBase {
    private final static String METHOD_NAME = "GET";

    @Override
    public String getMethod() {
        return METHOD_NAME;
    }
    public HttpGetWithEntity() {
        super();
    }
    public HttpGetWithEntity(final URI uri) {
        super();
        setURI(uri);
    }
    public HttpGetWithEntity(final String uri) {
        super();
        setURI(URI.create(uri));
    }
}
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.web.controller.tool.HttpGetWithEntity;
import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class Test {
    public void test() throws Exception {
        JSONObject params = new JSONObject();
        params.put("systemToken","111");
        params.put("userId","222");
        params.put("timeout","333");
        params.put("fileUrl","444");

        HttpGetWithEntity httpGetWithEntity = new HttpGetWithEntity("http://*........");
        httpGetWithEntity.setEntity(new StringEntity(JSONObject.toJSONString(params), ContentType.APPLICATION_JSON));
        httpGetWithEntity.setHeader("access-token","555");
        httpGetWithEntity.setHeader("Content-Type","application/json");

        CloseableHttpResponse response9 = HttpClients.createDefault().execute(httpGetWithEntity);
        HttpEntity entity = response9.getEntity();

        String result = "";
        if (entity != null) {
            result = EntityUtils.toString(entity, "UTF-8");
        }
        response9.close();
        System.out.println(result);
    }
}


http://www.kler.cn/a/420451.html

相关文章:

  • 底部导航栏新增功能按键
  • 采药 刷题笔记 (动态规划)0/1背包
  • Shire 1.1 发布:更强大的交互支持,升级 AI 智能体与 IDE 的整合体验
  • 【golang】单元测试,以及出现undefined时的解决方案
  • 【linux】(24)SSH
  • 【CSS】小球旋转loading加载动画
  • 简单介绍下 VitePress 中的 vp-doc 和 vp-raw
  • Git:分支管理
  • 面试小札:JVM虚拟机
  • LeetCode Hot100 21~30
  • 数仓3.0与大模型(如大型语言模型和其他深度学习模型)之间的关系
  • 机器学习(3)朴素贝叶斯算法
  • 数据库日志
  • HTML前端开发-- Flex布局详解及实战
  • 4k4d 学习安装笔记
  • CS144(七)
  • Linux - selinux
  • 屏幕触控支持指纹
  • 小程序 - 比较数字大小
  • Git 快速入门:全面了解与安装步骤
  • Leetcode:3195
  • RabbitMQ的工作模式
  • MySQL1.0
  • SQL面试题——抖音SQL面试题 股票波峰波谷
  • ubuntu 安装微信,记录
  • Docker 进阶指南:常用命令、最佳实践与资源管理