jsp页面包括html页面出现乱码

在jsp页面中,包含一个含有中文字符的html文件后,在浏览中显示时候,会出现乱码,这时就需要在web.xml中配置如下代码:

<jsp-config>
	<jsp-property-group>
		<description>Special property group for html Configuration JSP example.</description>
		<display-name>JSPConfiguration</display-name>
		<url-pattern>*.html</url-pattern>
		<el-ignored>true</el-ignored>
		<page-encoding>UTF-8</page-encoding>   <!-- 此处为项目使用的编码方式 -->
		<scripting-invalid>false</scripting-invalid>
		<include-prelude></include-prelude>
		<include-coda></include-coda>
	</jsp-property-group>
</jsp-config>

在jsp页面中使用:<%@include file="../common/operations/head.html"%>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。