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

js传后台action中文乱码处理

时间:2014-11-05 17:35:54      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:js传入action中文乱码

public ActionForward confirmTrans(final ActionMapping mapping,
            final ActionForm actionForm, final HttpServletRequest req,
            final HttpServletResponse res) throws Exception {
        String str= decodeToUtf(req.getParameter("str"));
        return null;
        }


public static String decodeToUtf(Object obj) {
        String reStr = obj != null ? obj.toString() : "";
        String regEx = "[+]";
        Pattern p = Pattern.compile(regEx);
        Matcher m = p.matcher(reStr);
        reStr = m.replaceAll("【SPSOFT】+【SPSOFT】");
        try {
            reStr = URLDecoder.decode(reStr, "UTF-8");
            reStr = reStr.replaceAll("【SPSOFT】+【SPSOFT】", "+");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return reStr;
    }
var str= encodeURI(str);
str= encodeURI(str);
var url = path + actionPath + "&str=" + str;


本文出自 “学习,总归要学” 博客,请务必保留此出处http://phzg03.blog.51cto.com/5570214/1572148

js传后台action中文乱码处理

标签:js传入action中文乱码

原文地址:http://phzg03.blog.51cto.com/5570214/1572148

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