当前位置: 技术问答>java相关
请教jsp中传输中文参数问题
来源: 互联网 发布时间:2017-05-01
本文导语: 代码如下: response.sendRedirect("adduser.jsp?addinfo=用户已存在"); 请问传到adduser.jsp中参数addinfo的值是“用户已存在”么? 假若是的话,那要把它显示出来还要做什么处理? 谢谢各位 :) | 用respo...
代码如下:
response.sendRedirect("adduser.jsp?addinfo=用户已存在");
请问传到adduser.jsp中参数addinfo的值是“用户已存在”么?
假若是的话,那要把它显示出来还要做什么处理?
谢谢各位 :)
response.sendRedirect("adduser.jsp?addinfo=用户已存在");
请问传到adduser.jsp中参数addinfo的值是“用户已存在”么?
假若是的话,那要把它显示出来还要做什么处理?
谢谢各位 :)
|
用response.sendRedirect("adduser.jsp?addinfo="+URLEncoder.encode("用户已存在"));
接收页:
String addinfo=URLDecoder.decode(request.getParameter("addinfo"));
接收页:
String addinfo=URLDecoder.decode(request.getParameter("addinfo"));
|
两页都要import java.net.*;
|
out.print(new String(request.getPamaeter("addinfo").getBytes("gb2312"),"iso-8859-1"));
|
穿过取得一定是乱麻
你可以用FilerEncoding 取过滤
当然我觉得你没有必要这么穿过去
你可以传去过一个数字或是字母
然后读到的话就自己去转换
你可以用FilerEncoding 取过滤
当然我觉得你没有必要这么穿过去
你可以传去过一个数字或是字母
然后读到的话就自己去转换