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

对jsp中Url含中文字符的编码处理

时间:2014-12-10 16:14:55      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   使用   sp   for   on   div   log   

有一段url="/app/index/index.jsp?userName=‘测试‘";在传入到jsp页面后。

     用 <%  String userName=request.getParameter("userName"); %>

     还是用(struts spring jquery 环境下)  ${param.userName},获取得到都是中文乱码了。所以需要对url进行先编码后再使用。如JS处理:

     var re = new RegExp(‘[\u4e00-\u9fa5]‘, "ig");//捕获中文,编码
     var chs=url.match(re);
     if(chs){
      for(var i=0;i<chs.length;i++){
       url=url.replace(chs[i], encodeURIComponent(chs[i]));
      }
     }

这样把url中中文先转码UTF-8再使用。则后面得到jsp中页面的值才正确显示。
 

对jsp中Url含中文字符的编码处理

标签:blog   http   ar   使用   sp   for   on   div   log   

原文地址:http://www.cnblogs.com/pipicoming/p/4155499.html

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