当前位置: 技术问答>java相关
response.sendRedirct() 的中文参数传递问题
来源: 互联网 发布时间:2015-06-17
本文导语: 我使用response.sendRedirct(ok.jsp?msg=成功验证);重定向网页时,所传递的中文参数在浏览器地址栏显示怪字符,ok.jsp提取的参数也是怪字符。 使用new string(msg.……)方法好像也无法解决 (win2000server resin2.0.4+iis) ...
我使用response.sendRedirct(ok.jsp?msg=成功验证);重定向网页时,所传递的中文参数在浏览器地址栏显示怪字符,ok.jsp提取的参数也是怪字符。
使用new string(msg.……)方法好像也无法解决
(win2000server resin2.0.4+iis)
使用new string(msg.……)方法好像也无法解决
(win2000server resin2.0.4+iis)
|
使用String varStr=new String("成功验收".getBytes("ISO8859_1"), "GBK"),然后将varStr进行转换试试。
response.sendRedirct("ok.jsp?msg="+java.net.URLEncoder.encode(varStr));
response.sendRedirct("ok.jsp?msg="+java.net.URLEncoder.encode(varStr));