Tomcat下中文亂碼問題的解決思路

如今將常見的亂碼問題分爲JSP頁面顯示中文亂碼、表單提交亂碼兩類。 javascript

     1)JSP頁面中顯示中文亂碼 html

     在JSP文件中使用page命令指定響應結果的MIME類型,如<%@ page language="java" contentType="text/html;charset=gb2312" %> java

     2)表單提交亂碼    web

     表單提交時(post和Get方法),使用request.getParameter方法獲得亂碼,這是由於tomcat處理提交的參數時默認的是iso-8859-1,表單提交get和post處理亂碼問題不一樣,下面分別說明。
    (1)POST處理
    對post提交的表單經過編寫一個過濾器的方法來解決,過濾器在用戶提交的數據被處理以前被調用,能夠在這裏改變參數的編碼方式,過濾器的代碼以下: tomcat

Java代碼    收藏代碼
  1. package example.util;  
  2.       
  3.     import java.io.IOException;  
  4.       
  5.     import javax.servlet.Filter;  
  6.     import javax.servlet.FilterChain;  
  7.     import javax.servlet.FilterConfig;  
  8.     import javax.servlet.ServletException;  
  9.     import javax.servlet.ServletRequest;  
  10.     import javax.servlet.ServletResponse;  
  11.       
  12.     public class SetCharacterEncodingFilter implements Filter {  
  13.       
  14.        protected String encoding = null;  
  15.       
  16.        protected FilterConfig filterConfig = null;  
  17.       
  18.        protected boolean ignore = true;  
  19.       
  20.     
  21.      public void destroy() {  
  22.       
  23.       this.encoding = null;  
  24.       this.filterConfig = null;  
  25.       
  26.      }  
  27.       
  28.      public void doFilter(ServletRequest request, ServletResponse response,  
  29.       <strong><span style="color: #ff0000;"> FilterChain chain) throws IOException, ServletException {  
  30.       
  31.           if (ignore || (request.getCharacterEncoding() == null)) {  
  32.        String encoding = selectEncoding(request);  
  33.        if (encoding != null) {  
  34.         request.setCharacterEncoding(encoding);  
  35.        }  
  36.       }</span>  
  37. </strong>      
  38.       // Pass control on to the next filter  
  39.       chain.doFilter(request, response);  
  40.       
  41.      }  
  42.     public void init(FilterConfig filterConfig) throws ServletException {  
  43.       
  44.       this.filterConfig = filterConfig;  
  45.       this.encoding = filterConfig.getInitParameter("encoding");  
  46.       String value = filterConfig.getInitParameter("ignore");  
  47.       if (value == null) {  
  48.        this.ignore = true;  
  49.       } else if (value.equalsIgnoreCase("true")) {  
  50.        this.ignore = true;  
  51.       } else if (value.equalsIgnoreCase("yes")) {  
  52.        this.ignore = true;  
  53.       } else {  
  54.        this.ignore = false;  
  55.       }  
  56.       
  57.      }  
  58.       
  59.      protected String selectEncoding(ServletRequest request) {  
  60.       
  61.       return (this.encoding);  
  62.       
  63.      }  
  64.       
  65.     }  

 

    文中紅色的代碼即爲處理亂碼的代碼。
      web.xml文件加入過濾器 app

 

Xml代碼    收藏代碼
  1. <filter>  
  2.     <filter-name>Encoding</filter-name>  
  3.     <filter-class>  
  4.             example.util.SetCharacterEncodingFilter  
  5.      </filter-class>  
  6.     <init-param>  
  7.    <param-name>encoding</param-name>  
  8.    <param-value>gbk</param-value>  
  9.    <!--gbk或者gb2312或者utf-8-->  
  10.   </init-param>  
  11.   <init-param>  
  12.    <param-name>ignore</param-name>  
  13.    <param-value>true</param-value>  
  14.   </init-param>  
  15.  </filter>  
Xml代碼    收藏代碼
  1. <filter-mapping>  
  2.   <filter-name>Encoding</filter-name>  
  3.   <servlet-name>/*</servlet-name>  
  4.  </filter-mapping>  

 

(2) Get方法的處理
 tomcat對post和get的處理方法不同,因此過濾器不能解決get的亂碼問題,它須要在其餘地方設置。
 打開<tomcat_home>\conf目錄下server.xml文件,找到對8080端口進行服務的Connector組件的設置部分,給這個組件添加一個屬性:URIEncoding="GBK"。修改後的Connector設置爲:
   post

Java代碼    收藏代碼
  1. <Connector port="8080" maxHttpHeaderSize="8192"  
  2.                maxThreads="150" minSpareThreads="25" maxSpareThreads="75"  
  3.                enableLookups="false" redirectPort="8443" acceptCount="100"  
  4.                connectionTimeout="20000" disableUploadTimeout="true" <span style="color: #ff0000;">URIEncoding="GBK"</span> />  


  * 注意修改後從新啓動tomcat才能起做用。 this

相關文章
相關標籤/搜索