java读取http请求中的body实例代码

网友投稿 405 2023-07-05


java读取http请求中的body实例代码

在http请求中,有Header和Body之分,读取header使用requgIokaqLUtest.getHeader("...");

读取Body使http://用request.getReader(),但getReader获取gIokaqLUt的是BufferedReader,需要把它转换成字符串,

下面是转换的方法。

puhttp://blic static String getBodyString(BufferedReader br) {

String inputLine;

String str = "";

try {

while ((inputLine = br.readLgIokaqLUtine()) != null) {

str += inputLine;

}

br.close();

} catch (IOException e) {

System.out.println("IOException: " + e);

}

return str;

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:BootStrap 动态添加验证项和取消验证项的实现方法
下一篇:微信小程序(二十)slider组件详细介绍
相关文章

 发表评论

暂时没有评论,来抢沙发吧~