The method setCharacterEncoding(String) is undefined for the type HttpServletResponse

response.setCharacterEncoding("gb2312"); 在Servlet2.3中是不行的,至少要2.4版本才可以,如果低于2.4版本,可以用如下办法: 

response.setContentType("text/html;charset=gb2312");
posted @ 2019-08-23 14:07  Mr_xYu  阅读(624)  评论(0)    收藏  举报