对于Post请求,服务器得到的数据可以先使用req.setCharacterEncoding("UTF-8")
但是在Get请求中此方法并不会生效因为在setCharacterEncoding()方法中有这样一句说明
Overrides the name of the character encoding used in the body of this request. This method must be called prior to reading request parameters or reading input using getReader().大意为:覆盖此请求体中使用的字符编码的名称。 在读取请求参数或使用getReader()读取输入之前,必须调用此方法。
就是请求必须在请求体里这就意味着Get方法不能使用,
所以对于Get请求我们可以使用String类来处理
例子如下:
String name=req.getParameter("name");
String name=new String(name.getBytes("ISO-8859-1"),"UTF-8");
因为Web容器默认字符就是ISO-8859-1,这样子就完成了Get请求设置编码的问题