tomcat下的jsp和servlet的字元編碼問題

來源:互聯網
上載者:User

tomcat下的jsp和servlet的字元編碼問題  
 
 使用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
 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

<filter>
        <filter-name>SetCharacterEncoding</filter-name>
        <filter-class>myFilter.ChangeCharsetFilter </filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>GB2312</param-value>//////指定編碼為GB2312
        </init-param>
     </filter>
    <filter-mapping>
        <filter-name>SetCharacterEncoding</filter-name>
        <url-pattern>/*</url-pattern>////////對於所有的request改變其編碼
    </filter-mapping>

</web-app>
///

3。

寫一個a.jsp

<%@ page contentType="text/html; charset=GB2312" %>
<html>
<head></head>
<body>
<%
String name=request.getParameter("name");///本來這裡得到字元是iso-8859-1編碼的,不能直接

在Console中輸出的,但是現在改變了request的編碼方式,此時的name的編碼是GB2312,所以能正確在Console中顯示的。

System.out.println(name);

%>
<form action="a.jsp" method="post">
<input type="text" name="name">
<input type="submit">
</form>
<%=name%>
</body>
</html>

完!

關於中文處理的問題就寫這些了!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.