码迷,mamicode.com
首页 > 其他好文 > 详细

从HttpServletRequest获取POST数据的代码

时间:2014-07-10 13:20:13      阅读:920      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   数据   os   

我们经常需要从HttpServletRequest对象获取POST请求的数据,下面给出简练的代码共大家参考

 StringBuffer jb = new StringBuffer();
  String line = null;
  try {
    BufferedReader reader = request.getReader();
    while ((line = reader.readLine()) != null)
      jb.append(line);
  } catch (Exception e) { /*report an error*/ }

注意返回时应常会遇到中文乱码问题,记得加上下面的两个语句,设置response对象的字符集,

response.setCharacterEncoding("GBK");
response.setContentType("application/xml; charset=GBK");

 

从HttpServletRequest获取POST数据的代码,布布扣,bubuko.com

从HttpServletRequest获取POST数据的代码

标签:style   blog   http   color   数据   os   

原文地址:http://www.cnblogs.com/liughost/p/3811862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!