欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 中 url传中文乱码问题解决办法

程序员文章站 2022-04-03 08:20:37
...

 

jsp 页面中的JS代码:

function  removeFile(str){
	 var title = document.getElementById("title").value;
	 window.location.href="<%=request.getContextPath()%>/removeAnnualReport.do?   title="+encodeURI(encodeURI(title));
 }
注意:使用两次encodeURI 对title 进行转换

  

 

   java中转码:
   
		this.getRequest().setCharacterEncoding("UTF-8");
		title =URLDecoder.decode(title, "UTF-8");

使用URLDecoder 进行解码

 

经以上测试,成功。记录一下。

相关标签: IE JSP