标签:jsp html 乱码
解决方案:
在web.xml加入如下代码
<jsp-config>
<jsp-property-group>
<url-pattern>*.html</url-pattern>
<page-encoding>gb2312</page-encoding>
</jsp-property-group>
</jsp-config>
乱码问题需要设置:页面内容编码,文件编码,项目编码
标签:jsp html 乱码
原文地址:http://tomluo.blog.51cto.com/6475600/1589808