经常需要通过链接传中文,这个时候经常遇到一些乱码的问题。在网上找了好多的资料,有的是可以转,但是只能转偶数位的中文,奇数位的中文依然是乱码。真是很郁闷。
一次偶然的机会,和朋友探讨这个问题的时候,发现通过以下的方法,就可以解决这个问题。希望对遇到同样问题的朋友,能有帮助。
jsp页面
script 脚本中encodeURIComponent(str)的用法
如:
- <script language="javascript">
- var value="测试";
- window.open("http:localhost:8080/xx/xxx?value="+encodeURIComponent(value));
- </script>
类
- String str=request.getParameter("value");
- str= new String(str.getBytes("ISO-8859-1"),"utf-8");
这个地方的utf-8是要根据你页面的编码格式,如果你的页面是用gbk的话,这个地方就是gbk了