当前位置: 技术问答>java相关
有关于get和post在Tomcat中!
来源: 互联网 发布时间:2015-01-30
本文导语: 如果我POST一个中文值的文本框,服务端可以正确显示可是我用GET,例如: http://localhost:8080/index.jsp?id=我的 中文显示为:?? 请问如何解决? | 利用下面的方法进行处理一下。 public String Strdeal(...
如果我POST一个中文值的文本框,服务端可以正确显示可是我用GET,例如:
http://localhost:8080/index.jsp?id=我的
中文显示为:??
请问如何解决?
http://localhost:8080/index.jsp?id=我的
中文显示为:??
请问如何解决?
|
利用下面的方法进行处理一下。
public String Strdeal(String str1)
{
String str=null;
try
{
byte[] str2=str1.getBytes("ISO8859-1");
str = new String(str2);
}
catch(Exception e){System.out.println(e);}
return str;
}
public String Strdeal(String str1)
{
String str=null;
try
{
byte[] str2=str1.getBytes("ISO8859-1");
str = new String(str2);
}
catch(Exception e){System.out.println(e);}
return str;
}
|
out.println(new String(request.getParameter("id").getBytes("ISO8859-1"), "GBK"));