中小企业网站制作软件,网站关键词密度,软件制作思维导图的优势,网页版微信二维码失效目录 一、POST 传递简单的字符串内容 .body(params)二、POST 传递 Json 数据#xff0c;以表单类型传递 .form(params)二、POST 传递 Json 数据#xff0c;以表单类型传递 .form(params) 和 .body(params) 方法效果等效的思路四、传统接口带 token 验证的代码模板参考链接 一… 目录 一、POST 传递简单的字符串内容 .body(params)二、POST 传递 Json 数据以表单类型传递 .form(params)二、POST 传递 Json 数据以表单类型传递 .form(params) 和 .body(params) 方法效果等效的思路四、传统接口带 token 验证的代码模板参考链接 一、POST 传递简单的字符串内容 .body(params)
演示代码
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import cn.hutool.http.HttpRequest;
/*** cf*/
public class TqOdpServiceClient {private static String urlurl;;public static String execute(String http,String params) {JSONObject response JSONObject.parseObject(HttpRequest.post(http url).body(params).execute().body());return response;}
}
二、POST 传递 Json 数据以表单类型传递 .form(params)
演示代码
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import cn.hutool.http.HttpRequest;
/*** cf*/
public class TqOdpServiceClient {private static String urlurl;;public static String execute(String http) {HashMapString, Object params new HashMap(2);params.put(test1, 测试数据);params.put(test2, 测试数据);JSONObject response JSONObject.parseObject(HttpRequest.post(http url).form(params).execute().body());return response;}
}
二、POST 传递 Json 数据以表单类型传递 .form(params) 和 .body(params) 方法效果等效的思路
演示代码可以看到 String newParams JSON.toJSONString(params);将 HashMap 类型的数据转换为字符串类型就可以作为字符串被传递到 body 内后面就是对应接口的后端数据处理问题了。
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import cn.hutool.http.HttpRequest;
/*** cf*/
public class TqOdpServiceClient {private static String urlurl;;public static String execute(String http) {HashMapString, Object params new HashMap(2);params.put(test1, 测试数据);params.put(test2, 测试数据);String newParams JSON.toJSONString(params);JSONObject response JSONObject.parseObject(HttpRequest.post(http url).body(newParams).execute().body());return response;}
}
四、传统接口带 token 验证的代码模板 import cn.hutool.http.Header;
import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;/*** cf*/
public class TqOdpServiceClient {private static String urlurl;;public static String execute(String http, String accessToken) {JSONObject response JSONObject.parseObject(HttpRequest.get(http url).header(Header.AUTHORIZATION, Bearer .concat(accessToken)).execute().body());return response;}
} 参考链接
java】hutool发送http请求配置ssl忽略
SpringBoot 项目使用hutool 工具进行 http 接口调用的处理方法