跟据HttpRequest获取body内数据
Posted liweibing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跟据HttpRequest获取body内数据相关的知识,希望对你有一定的参考价值。
1 . 字节流
InputStream inputStream = null ;
try {
inputStream = request.getInputStream();
BufferedInputStream byteOutputStream = new BufferedInputStream( inputStream );
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
byte[] bytes = new byte[1024];
int a ;
while( ( a = byteOutputStream.read( bytes ) ) != -1){
byteArrayOutputStream.write( bytes , 0 , a);
}
String s = byteArrayOutputStream.toString("utf-8");
return s;
}catch(IOException e){
e.printStackTrace();
return e.getMessage();
}finally{
if(inputStream != null ){
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
2 . 字符流
BufferedReader reader = null ;
try {
reader = request.getReader();
StringBuffer sb = new StringBuffer();
String str ;
while (null != (str = reader.readLine())){
sb.append( str );
}
return sb.toString();
} catch (IOException e) {
e.printStackTrace();
return e.getMessage();
}finally {
if(null == reader){
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
3 . RequestBody方式 直接Map 或者 对象来接收 ,这个需要知道对方传输过来的样式
这样Map就可以直接拿到了 .
以上是关于跟据HttpRequest获取body内数据的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Tornado HTTPRequest 发布原始文件
django 获取request请求对象及response响应对象中的各种属性值
在 C# Caliburn Micro WPF 中异步和等待获取 HttpRequest 时更新 ProgressBar