在myeclipse中的jsp里引入html,浏览器界面显示乱码的解决办法

用<%@include file="index.html" %>方式在jsp界面引入html,浏览器显示乱码,文件的编码方式都已经改为utf-8了,但还是不起作用。看了这篇博客http://m.blog.csdn.net/article/details?id=51707061里面的方法2完美解决了问题,

方法二:在web.xml里统一配置pageEncoding的编码,在web-app标签里添加如下配置:


	
		html encoding
		JSPConfiguration
		*.html
		true
		UTF-8
		false
		
		
	

另外测试了一下方法1,也是成功的

你可能感兴趣的:(jsp,html,myeclipse)