首页 > 其他 > 详细

从HttpServletRequest获取POST数据的代码

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

我们经常需要从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数据的代码

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!