java 测试post请求 在body里面传递参数怎么设置,怎么接收
某草草
某草草 2017-05-27 17:40:57
[Java讨论组]

public String post(String strURL,String params) {

    System.out.println(strURL);
    System.out.println(params);
    try {
        URL url = new URL(strURL);// 创建连接 
        HttpURLConnection connection = (HttpURLConnection) 
        url.openConnection(); 
        connection.setDoOutput(true); 
        connection.setDoInput(true); 
        connection.setUseCaches(false); 
        connection.setInstanceFollowRedirects(true); 
        connection.setRequestMethod("POST");// 设置请求方式   
        connection.setRequestProperty("Accept","application/json");// 设置接收数据的格式   
        connection.setRequestProperty("Content-Type","application/json");// 设置发送数据的格式   
        connection.connect(); OutputStreamWriter out = new OutputStreamWriter( connection.getOutputStream(),"UTF-8");// utf-8编码   
        out.append(params); out.flush(); out.close(); // 读取响应   
        int length = (int) connection.getContentLength();// 获取长度   
        InputStream is = connection.getInputStream(); 
        if (length != -1){
            byte[] data = new byte[length]; 
            byte[] temp = new byte[512]; 
            int readLen = 0; int destPos = 0; 
            while ((readLen = is.read(temp)) > 0){
                System.arraycopy(temp, 0, data, destPos, readLen); 
                destPos += readLen; 
            }
            String result = new String(data, "UTF-8");
            System.out.println(result); 
            return result; 
        } 
    } catch (Exception e) {
        // TODO: handle exception
        e.printStackTrace();
    }
    return "error";
    
}
@RequestMapping(value="/text", method = RequestMethod.POST)
@ResponseBody
public String text(HttpServletRequest request,HttpServletResponse response,@RequestBody   String t){
    System.out.println(t);
    
    
    return "DetailedRules";
}
某草草
某草草

全部回复(3)
習慣沉默

你可以用Paw或者Insomnia或者ARC来测试,不用写代码啦

天蓬老师

conn.setParam设置参数值。。。下个fiddler,调试快

某草草

如果只是测试接口,chorme里面下个postman测试就好了

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号