Tomcat5.5的request与response的encoding

xiaoxiao2024-10-31  16

     比较好的一种解决方法是,通过过滤器来实现request的encoding,在tomcat5.5文件夹中webapps\servlets-examples\WEB-INF\classes\filters有个实现,即SetCharacterEncodingFilter.java,编译部署到自己的应用中即可。

    但此时request后的页面显示仍然是乱码,这是由于response的encoding没有指定为何request一致,因而加入

 response.setContentType("text/html;charset=UTF-8")后即可解决乱码问题!

转载请注明原文地址: https://www.6miu.com/read-5018866.html

最新回复(0)