在J2EE系统URL里传递中文和特殊字符

这是对用UTF-8开发面向国际化Java/J2EE应用并解决中文问题和Mysql Hibernate Struts Tomcat中文问题解决方法 的补充:

1,jsp里javascript里传递参数:encodeURIComponent这个javascript函数可以对URL里的参数进行编码,如:
javascript:location.href='http://del.icio.us/post?v=4;url='+encodeURIComponent(location.href)+';title='+encodeURIComponent(document.title)

2,jsp里传递参数:可将window.location="index.html?beWFName=${beWFName&searchGenUsrNo="+theForm.searchGenUsrNo.value;
  改为window.location="<c:url value="/index.html">
                                                       <c:param name="beWFName" value="${beWFName}"/>
                                           </c:url>&searchGenUsrNo="+theForm.searchGenUsrNo.value; 

3,java的Controller类里redirect重定向传递参数:可以对要传递的参数编码,URLEncoder.encode(userName,"GBK")         //或者UTF-8

你可能感兴趣的:(java)