当前位置: 编程技术>java/j2ee
jsp中 ajax的get请求的中文乱码问题的解决方法
来源: 互联网 发布时间:2014-10-19
本文导语: 一般Tocant 的url编码是iso-8859-1(查看tocat/conf/server.xml 中的Connector 节点没有写URIEncoding="xxxxxx") 如下: 代码如下: 如果我们在servlet 中写如下的代码 代码如下: String username = request.getParameter("name");//name 是...
一般Tocant 的url编码是iso-8859-1(查看tocat/conf/server.xml 中的Connector 节点没有写URIEncoding="xxxxxx") 如下:
代码如下:
如果我们在servlet 中写如下的代码
代码如下:
String username = request.getParameter("name");//name 是get 请求过来的参数,这里已经将get请求过来的字节码转化成iso-8859-1的的码了,解码错误
byte[] b = username.getBytes("iso-8859-1");//所以要重新转化为字节码,再用正确的编码方式解码,正确编码方式就是 jsp那个页面的编码方式,
username =new String(b,"GBK");
System.out.print(username );