码迷,mamicode.com
首页 > Web开发 > 详细

Struts2中如何接收另一个action 或者JSP页面经过POST方法传过来的字符串

时间:2017-03-24 21:50:25      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:pos   str   tps   rac   页面   struts2   tostring   方法   let   

经验总结:

最近在用struts2 写接口,要给请求者返回一个json字符串,但是,请求是用POST请求的,各种方法尝试,最后终于得到了答案:

/**
     * 封装接收客户端传过来的post数据
     * @param ctx ActionContext的对象 
     * @return
     */
    public static String getRequestBody(ActionContext ctx){
        try {
            HttpServletRequest request = (HttpServletRequest)ctx.get(ServletActionContext.HTTP_REQUEST);
            InputStream inputStream = request.getInputStream();
            String strMessage = "";
            StringBuffer buff = new StringBuffer();
            BufferedReader bufferReader = new BufferedReader(new InputStreamReader(inputStream,"utf-8")); 
            while((strMessage = bufferReader.readLine()) != null){
                buff.append(strMessage);
            }
            bufferReader.close();
            inputStream.close();
            return buff.toString();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

经过这个方法后,在另一个需要使用到POST的json的时候,只需要

ActionContext ctx = ActionContext.getContext();
String json = getRequestBody(ctx);

上面那个json就是POST中的json数据.

Struts2中如何接收另一个action 或者JSP页面经过POST方法传过来的字符串

标签:pos   str   tps   rac   页面   struts2   tostring   方法   let   

原文地址:http://www.cnblogs.com/llynic/p/6613515.html

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