欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

fiddler发送post请求

程序员文章站 2022-06-06 09:57:44
...

第一种:form表单方式

Content-Type: application/x-www-form-urlencoded;charset=utf-8
request body中的参数格式:userName=adminicxp&aaa@qq.com#

fiddler发送post请求

这种方式可以用 request.getParameter的方式来获得。

第二种: json 格式

Content-Type: application/json; charset=utf-8

fiddler发送post请求

@RequestMapping("test")
    private void test(HttpServletRequest request) throws IOException {
        try {
            String jsonString = getBodyString(request.getReader());
            System.err.println("jsonString"+jsonString);
            //import com.alibaba.dubbo.common.json.JSON;
            User user=JSON.parse(jsonString,User.class);
            System.err.println("===========");
        } catch (Exception e) {
            log.error("Exception:{}", e);
        }
    }

    public String getBodyString(BufferedReader br) {
        String inputLine;
        String str = "";
        try {
            while ((inputLine = br.readLine()) != null) {
                str += inputLine;
            }
            br.close();
        } catch (IOException e) {
            System.out.println("IOException: " + e);
        }
        return str;
    }
转载:https://www.cnblogs.com/hujunzheng/p/6178049.html

在线json

postman 发送post请求

1 设置header

fiddler发送post请求

2 body选项 raw 输入参数 json格式

fiddler发送post请求

相关标签: fiddler