request.getQueryString()就是获取查询字符串
比如客户端发送
http://localhost/test.do?a=b&c=d&e=f
通过request.getQueryString()得到的是
a=b&c=d&e=f