首页 > 代码库 > 对jsp中Url含中文字符的编码处理

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

有一段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中页面的值才正确显示。
 
转自:http://blog.chinaunix.net/uid-276853-id-366509.html

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