标签:
// 设置request与response的编码
response.setContentType("text/html");
request.setCharacterEncoding("GBK");
response.setCharacterEncoding("GBK");
在doPost,service等方法里配置字符编码过滤器,防止出现中文乱码
标签:
原文地址:http://www.cnblogs.com/ganjun/p/5038458.html