最完整的处理jsp处理乱码问题步骤,不需要手工转码

以编码格式为UTF-8为例

1,jsp页面文件编码格式,在eclipse右键-》properties-》resource-》text file encode修改该UTF-8

2,jsp页面上的

<%@ page  pageEncoding="UTF-8"%>
跟上面一样,为文件存储格式,按此格式存储文件,并编译里面汉字

3,jsp页面上的

<%@ page  contentType="text/html; charset=UTF-8" %>
jsp页面解码格式

4,jsp页面上<head>里面的

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
浏览器解码格式,不设此格式可以在浏览器中自行设置
5,wen项目中的web.xml中添加过滤器

 <filter-name>characterEncodingFilter</filter-name>  
	    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
	    <init-param>  
	        <param-name>encoding</param-name>  
	        <param-value>UTF-8</param-value>  
	    </init-param>  
	    <init-param>  
	        <param-name>forceEncoding</param-name>  
	        <param-value>true</param-value>  
	    </init-param>  
	</filter>
	<filter-mapping>
	    <filter-name>characterEncodingFilter</filter-name>
	    <url-pattern>/*</url-pattern>
  	</filter-mapping>
<filter-mapping>不要漏了,不然有其他过滤器的时候会出现乱码。

这个地方其实相当于jsp页面的

request.setCharacterEncoding("UTF-8")
response.setCharacterEncoding ("UTF-8")

6,tomcat中server.xml文件,设置端口的地方

    <Connector port="8080" protocol="HTTP/1.1" 
               connectionTimeout="20000" 
               redirectPort="8443"  URIEncoding="UTF-8"/>

7,如果用到<%@ include file="../footer.jsp"%>需要两边编码完全一致,如不能一边utf-8,一边UTF-8



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