一般Tocant 的url编码是iso-8859-1(查看tocat/conf/server.xml 中的Connector 节点没有写URIEncoding="xxxxxx") 如下:
复制代码 代码如下:
Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
如果我们在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 );
您可能感兴趣的文章:- 原生 JS Ajax,GET和POST 请求实例代码
- JSONP跨域GET请求解决Ajax跨域访问问题
- jsp+ajax发送GET请求的方法
- 使用$.getJSON实现跨域ajax请求示例代码
- ajax请求get与post的区别总结
- 防止ajax重复请求的方法(GET和POST)
- 通过jquery的$.getJSON做一个跨域ajax请求试验
- 解决微信返回上一页,页面中的AJAX的请求,对Get请求无效的问题