开发者社区> 问答> 正文

java 测试post请求 在body里面传递参数怎么设置,怎么接收。报错

"

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";
}
"

展开
收起
因为相信,所以看见。 2020-05-27 12:59:07 1324 0
1 条回答
写回答
取消 提交回答
  • 阿里,我所有的向往

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

    ######

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

    ######

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

    2020-05-27 16:24:08
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
移动互联网测试到质量的转变 立即下载
给ITer的技术实战进阶课-阿里CIO学院独家教材(四) 立即下载
F2etest — 多浏览器兼容性测试整体解决方案 立即下载