程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> tomcat中文問題--過濾器

tomcat中文問題--過濾器

編輯:JAVA編程入門知識

 

  轉載請注明:http://www.csdn.net/develop/article/17/17204.shtm

  作者:[email protected]   

                                     使用filter來改變request的編碼

  在前面的文章裡面,我們討論了在tomcat下的jsp和servlet的字符編碼問題!

  知道當沒有指定request的編碼的時候,從客戶端得到的數據是iso-8859-1編碼的(request.getParameter()得到傳遞的參數值);

  但是我們怎麼來改變request的編碼呢?

  方法有很多種!

   比如:在getRequestDispatcher("/jsp/jsptoserv/hello.jsp").forward(request, response);之前修改

  request的編碼,那麼在jsp/jsptoserv/hello.jsp中得到的參數值就是制定的編碼的字符。

  本文我們使用Filter來修改request的編碼!

   

  1)首先編寫filter類:

  package myFilter;

  
  import Java.io.IOException;
  import javax.servlet.*;
  

  public class ChangeCharsetFilter implements Filter {

  
      protected String encoding = null;/////要制定的編碼,在web.XML中配置
  
      protected FilterConfig filterConfig = null;

          public void destroy() {

          this.encoding = null;
          this.filterConfig = null;

      }

      public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
   throws IOException, ServletException {

              if (request.getCharacterEncoding() == null){
              String encoding = getEncoding();////得到指定的編碼名字
              if (encoding != null)
                  request.setCharacterEncoding(encoding);////設置request的編碼
          }

           chain.doFilter(request, response);///有機會執行下一個filter

      }

      public void init(FilterConfig filterConfig) throws ServletException {

            this.filterConfig = filterConfig;
          this.encoding = filterConfig.getInitParameter("encoding");///得到在web.xml中配置的編碼
        }

  
      protected String getEncoding() {

          return (this.encoding);///得到指定的編碼

      }

  
  }

  
  2。編輯web.xml文件

  <?xml version="1.0" encoding="ISO-8859-1"?>

  <!DOCTYPE web-app
  
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved