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)來做的。