url参数乱码二
摘自:
http://www.ruanyifeng.com/blog/2010/02/url_encoding.html
关于URL编码
作者: 阮一峰
日期: 2010年2月11日
总结附件中的文章,使用url传参数时的方法如下:
?
对url编码:
<a href="javascript:location.href=encodeURI('b.html?wd=测试')">点击跳转</a>
解码方法如下:
1.js中
<script type="text/javascript">document.writeln("<b>原始的: </b>b.html?wd=测试");document.write("<br/>");var encodeURI=encodeURI("b.html?wd=测试");document.writeln("<b>编码后的: </b>"+encodeURI);document.write("<br/>");var decodeURI=decodeURI(encodeURI);document.writeln("<b>解码后的: </b>"+decodeURI);document.write("<br/>");</script>
上面js代码的结果
原始的:b.html?wd=测试 编码后的:b.html?wd=%E6%B5%8B%E8%AF%95 解码后的:b.html?wd=测试
?
?2.java中:
String wd=request.getParameter("wd");wd=java.net.URLDecoder(wd,"UTF-8");
?
encodeURIComponent()与之类似,对应的解码函数为decodeURIComponent()
?