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

用servlet過濾器解決JSP中文亂碼問題

編輯:關於JSP

---servlet 文件

package com.encoding;

import java.io.IOException;

import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;

public class Encoding  implements javax.servlet.Filter {

     public void destroy() {
          / / TODO Auto-generated method stub
     }

     public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
          request .setCharacterEncoding("GBK");
          chain.doFilter(request, response);
     }

     public void init(FilterConfig arg0) throws ServletException {
          // TODO Auto-generated method stub
     }
}

---XML配置文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

   <!-- 中文亂碼過濾處理 -->
    <filter>
        <filter-name>encoding</filter-name>
        <filter-class>
            com.encoding;.Encoding
        </filter-class>
    </filter>
    <filter-mapping>
        <filter-name>encoding</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

</web-app>

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