response.sendRedirect() 传中文参数的问题
程序员文章站
2022-07-12 18:10:59
...
原文地址:http://hi.baidu.com/xt167940/item/15b1ea6bebd67a35ac3e8381
前几天在处理用 response.sendRedirect跳转页面传参数的过程发现,如果参数中有中文的话!如果不在传输前处理的话,在接收页面中文参数则取不到!
需要经过处理
例子:
传递页面: chuandi.jsp
接收页面: jieshou.jsp
String temp = "中文参数"
temp= java.net.URLEncoder.encode(temp.toString(),"gb2312");
response.sendRedirect("jieshou.jsp?temp="+temp);
这样处理后 则在 jieshou.jsp 页面可以通过 requst.getParamter("temp");取到中文参数
上一篇: AJAX
下一篇: 链接传中文参数接收乱码,get请求