1.doPost方法请求方式为Post 请求内容中包含请求体,因此解决方法较简单,只要改变请求体的编码即可,具体方法setCharacterEncoding("utf-8");

2.doget方法请求方式为get,因为请求内容没有请求体,所以不能使用setCharacterEncoding()方法,需要手动转换。

    具体方法:

       String name = request.getParameter("name");
            byte data[] = name.getBytes("iso-8859-1");
            String encodingName = new String(data,"utf-8");

 

05-28 19:47