J2EE WEB-Tomcat5.5.9中文問題解決方案

來源:互聯網
上載者:User
j2ee|web|解決|問題|中文   1、html

  無論是獨立的html,還是其他程式產生的,如Servlet等,注意在最終的html的和之間必須加入meta標籤,用來指定html中輸入字元的編碼,如:

 
   <head>  <meta http-equiv="Content-Type" content="text/html; charset=gb2312">  <title>測試GET && POST-Send</title>  </head>  


  2、jsp和servlet

  首先必須解決程式輸出(如response.writeln(String s))和接受從用戶端傳來的資料(如request.getParameter(String sname))編碼問題,我們可以利用檔案過濾功能,具體需要所用的jsp/servlet容器或者伺服器提供的功能設定,如在Tomcat5.5.9中可以在webapps/yourAppDirectory/WEB-INF/web.xml中設定如下:

 
   <filter>  <filter-name>SetCharsetEncodingFilter</filter-name>  <display-name>SetCharsetEncodingFilter</display-name>  <description>Set CharsetEncoding Filter</description>  <filter-class>com.gg.comm.web.SetCharsetEncodingFilter</filter-class>  <init-param>  <param-name>encoding</param-name>  <param-value>gb2312</param-value>  </init-param>  </filter>  <filter-mapping>  <filter-name>SetCharsetEncodingFilter</filter-name>  <url-pattern>/*</url-pattern>  </filter-mapping>  


  其中SetCharsetEncodingFilter Class就是用來設定request和reponse字元編碼的filter類,其中設定語句如下:

  
  request.setCharacterEncoding(targetEncoding);  response.setContentType("text/html");  response.setCharacterEncoding(targetEncoding);  


  另外為瞭解決通過get(url中帶有參數)方式傳遞參數的亂碼問題,我們還需要設定一下url傳遞參數所需要的編碼,具體在Tomcat5.5.9中可以在${Tomcat_home}\conf\server.xml中的和之間設定,如下:

  
  <!--  URIEncoding="GBK":Force GET method String(Chinese)     can be transferd properly by http:uri    note:Tomcat only support GBK specification,so not set charset gb2312  -->  <Connector URIEncoding="GBK" port="80"     redirectPort="8443" maxSpareThreads="75"      maxThreads="150" minSpareThreads="25">  </Connector>  


  最後為瞭解決jsp的亂碼問題,我們還需要作如下處理,即在左右的jsp頭均加上如下指令:

  
      <%@ page contentType="text/html;charset=gb2312" language="java" %>  或者  <%@ page pageEncoding="gb2312"%>  


  3、JDBC和資料庫

  關於寫入資料庫和讀取資料庫資料的亂碼問題,可以通過如下方式輕鬆解決:

  對於JAVA程式的處理方法按我們指定的方法處理。

  把資料庫預設支援的編碼格式改為GBK或GB2312的。

  到此,一般來說對於WEB方式的應用來說,中文問題就可以解決了。當然以上方法是根據統一編碼的原則解決的以及WEB方式的檔案轉換關係(file->class->load->execute or transfered or response or request)來做的。

相關文章

聯繫我們

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