当前位置: 技术问答>java相关
高手请进:请问用response.sendRedirect()函数传递的中文参数如何正确识别?
来源: 互联网 发布时间:2015-08-23
本文导语: response.sendRedirect("a.jsp?username=中国"); 在a.jsp页面上,地址栏显示:http://127.0.0.1/a.jsp?username=脰脨鹿煤 页面显示:???????? ??鹿煤 a.jsp程序如下: 我用的是TOMCAT4。1.要如何才能正确显示response.sendRedirect()传递过...
response.sendRedirect("a.jsp?username=中国");
在a.jsp页面上,地址栏显示:http://127.0.0.1/a.jsp?username=脰脨鹿煤
页面显示:???????? ??鹿煤
a.jsp程序如下:
我用的是TOMCAT4。1.要如何才能正确显示response.sendRedirect()传递过来的中文参数啊,高手救命。
在a.jsp页面上,地址栏显示:http://127.0.0.1/a.jsp?username=脰脨鹿煤
页面显示:???????? ??鹿煤
a.jsp程序如下:
我用的是TOMCAT4。1.要如何才能正确显示response.sendRedirect()传递过来的中文参数啊,高手救命。
|
encode!
|
response.sendRedirect("2.jsp?name="+java.net.URLEncoder.encode(name);