解決JSP開發中Web程式顯示中文三種方法_JSP編程

來源:互聯網
上載者:User
方法一:最簡單也是用的最多的方法
  <%@ page language="java" pageEncoding="GBK" %>
  或者<%@ page contenttype="text/html;charset=gbk";>這裡可以用gb2312或者gbk,只是gbk比gb2312支援跟多的字元。
  這個方法用於jsp頁面中的中文顯示。
  方法二:使用過濾器
  過濾器使用主要針對錶單提交,插入資料庫的資料都是?號。這也是應為tomcat不按request所指定的編碼進行編碼,還是自作主張的採用預設編碼方式iso-8859-1編碼。
  編寫一個SetCharacterEncodingFilter類。
  import java.io.IOException;
  import javax.servlet.Filter;
  import javax.servlet.FilterChain;
  import javax.servlet.FilterConfig;
  import javax.servlet.ServletException;
  import javax.servlet.ServletRequest;
  import javax.servlet.ServletResponse;
  public class SetCharacterEncodingFilter implements Filter {
   protected String encoding = null;
   protected FilterConfig filterConfig = null;
   protected boolean ignore = true;
   public void init(FilterConfig filterConfig) throws ServletException {
    this.filterConfig=filterConfig;
    this.encoding=filterConfig.getInitParameter("encoding");
    String value=filterConfig.getInitParameter("ignore");
    if(value==null)
     this.ignore=true;
    else if(value.equalsIgnoreCase("true"))
     this.ignore=true;
    else
     this.ignore=false;
   }
   public void doFilter(
  ServletRequest request, ServletResponse response, FilterChain chain)
   throws IOException, ServletException {
   // TODO 自動產生方法存根
   if (ignore    (request.getCharacterEncoding() == null)) {
    String encoding = selectEncoding(request);
    if (encoding != null)
     request.setCharacterEncoding(encoding);
   }
   chain.doFilter(request, response);
  }
  public void destroy() {
   // TODO 自動產生方法存根
   this.encoding = null;
   this.filterConfig = null;
  }
  protected String selectEncoding(ServletRequest request) {
   return (this.encoding);
  }
  }
然後再web.xml加上
  <!-- Set Character Encoding-->
  <filter>
   <filter-name>Set Character Encoding</filter-name>
   <filter-class>com.struts.common.SetCharacterEncodingFilter</filter-class>
   <init-param>
    <param-name>encoding</param-name>
    <param-value>UTF-8</param-value>
   </init-param>
  </filter>
  <filter-mapping>
   <filter-name>Set Character Encoding</filter-name>
    <url-pattern>/*</url-pattern>
   </filter-mapping>
  <!-- Set Character Encoding-->
  使用過濾器的好處很多,特別是項目之中。
  而且在使用國際化時就更有用了,只要在頁面指定 <%@ page language="java" pageEncoding="UTF-8" %>,伺服器就會根據本地Locale來顯示正確的字元集。
  所以我精選使用過濾器。
  方法三:修改tomcat的server.xml檔案中URIEncoding
  <Connector debug="0" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true"
  port="80" redirectPort="8443" enableLookups="false" minSpareThreads="25" maxSpareThreads="75"
  maxThreads="150" maxPostSize="0" URIEncoding="GBK" >
  </Connector>
  這個方法主要針對從url中擷取字串的問題。
  在tomcat5.0及以上版本,post和get方法在處理編碼時有所不同。如果你在url中擷取中文就會出現?號。但在tomcat4.1版本沒有問題,因為tomcat4.1的post和get方法在處理編碼時是一樣的。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.