打开web应用的web.xml文件($webapp/WEB-INF/web.xml)加入如下信息:
<mime-mapping>
<extension>htm</extension>
<mime-type>text/html;charset=gb2312</mime-type>
</mime-mapping>
<mime-mapping>
<extension>html</extension>
<mime-type>text/html;charset=gb2312</mime-type>
</mime-mapping>
如果你想让你Tomcat下所有web应用都生效,那就打开$tomcat\conf\web.xml找到类似上面的
信息加入charset=gb2312,重新启动Tomcat就一切都搞定了!