Tomcat+ssh+Mysql本地正常,遠程伺服器中文亂碼。

來源:互聯網
上載者:User

標籤:

ssh2+mysql中文亂碼解決方案(統一使用UTF-8編碼)

中文亂碼,首先要區分是頁面亂碼、action亂碼,還是資料庫亂碼。大致的原理是java使用unicode編碼– >window使用gbk(gb2312的擴充集)–mysql預設使用utf-8(unicode的一種編碼方法),這樣轉來轉去就亂碼了 ^_^。解決方案如下:

1. 在struts2裡面,最好將所有字元都設成utf-8。

 

<%@ page contentType=”text/html; charset=UTF-8″%>
<%@ page pageEncoding=”UTF-8″ %>

1.1 在jsp頁面設定字元編碼。這邊有必有說明的是如果是jsp+java bean+servlet的方案,中文亂碼很好解決,統一設成gb2312就可以了。

1.2 使用struts架構字元集不能設成gb2312,要改成utf-8。2. 在struts.properties 添加:
struts.devMode=false
struts.enable.DynamicMethodInvocation=true
struts.i18n.reload=true
struts.ui.theme=simple

 

struts.locale=zh_CN
struts.i18n.encoding=UTF-8

struts.serve.static.browserCache=false
struts.url.includeParams=none

其中locale、encoding就是字元集的設定了。

3. 在web.xml加個filter[在struts2架構中,該filter必需放在Action的filter之前!順序非常重要!!!]

<!– zh-cn encoding –>
<filter>
  <filter-name>EncodingFilter</filter-name>
  <filter-class>com.sterning.filter.EncodingFilter</filter-class>
  <init-param>
   <param-name>encoding</param-name>
   <param-value>UTF-8</param-value><!-- 或者你需要的編碼格式 -->
  </init-param>
 </filter>
 <filter-mapping>
  <filter-name>EncodingFilter</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>

跟上述方法類似,還可以在action中設定字元編符.


HttpServletResponse response = null;
response = ServletActionContext.getResponse();
request.setCharacterEncoding(”utf-8″);
response.setContentType(”text/html;charset=utf-8″);

通過上述方法,基本就可以搞定中文亂碼的問題了。當然,也有例外(如web server的版本\資料庫的版本等等)。象在我的一個項目碰到一個中文亂碼,tomcate5.5是會亂碼的,而在tomcate6中就不會。這邊就涉及到tomcate connector字元的設定了。

<Connector port=”80″ maxHttpHeaderSize=”8192″
maxThreads=”150″ minSpareThreads=”25″ maxSpareThreads=”75″
enableLookups=”false” redirectPort=”8443″ acceptCount=”100″
connectionTimeout=”20000″ disableUploadTimeout=”true” URIEncoding=”GBK” />

——————————————————————–

後記之一:在使用struts2時,仍是遇到一種亂碼。後來調試才發現,struts2的web.xml配置是有順序的

在web.xml中EncodingFilter的位置應該在Struts2的FilterDispatcher之前,因為要先調整字元集,然後進入Action。

按照Struts2的API,filter的順序是
struts-cleanup filter
SiteMesh filter
FilterDispatcher

——————————————————————–

後記之二:這個方法是下下策了,只有在前面的方法都無效時才使用。

在action中直接使用request.getParameter()時;還是出現亂碼。原因分析如下:

1、getParameter()是有帶字元參數的。例:

String s = (String)request.getParameter(”txt”).getBytes(”iso-8859-1“);

2、String也可以帶有字元參數。

String(byte[] bytes, String charsetName)
構造一個新的 String,方法是使用指定的字元集解碼指定的位元組數組。

例:String s = new String(”中文”,”utf-8″);

3、綜合上述兩點,編寫一個類來完成此項任務

public class ConvertCharacter{

 

public String Convert(String s){

String result;

byte[] temp ;

try{

temp = s.getBytes(”iso-8859-1″);

result =  new String(temp,”utf-8″);

}

return result;

}

最後是資料庫的設定:

以mysql5為例,create db 和table時,均應該設定charset為GBK!

 

總結:

總之,你一定要保證你的字元一路走來要使用同一個編碼,最好就是UTF-8.

顯示的JSP頁面要用 <%@ page contentType="text/html; charset=UTF-8" language="java" %>

struts2裡設定 <constant name="struts.i18n.encoding" value="UTF-8" />

寫個FILTER 過濾一下字元,也用UTF-8

資料庫MYSQL建立的庫要用UTF-8編碼

下邊注意:

在SPRING2裡配置HIBERNATE的時候(MYSQL資料庫),連接字串一定要註明字元編碼,否則絕對是亂碼.比如我的:

<bean id="dataSource"
  class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  <property name="driverClassName"
   value="org.gjt.mm.mysql.Driver">
  </property>
  <property name="url" value="jdbc:mysql://localhost:3306/myData?useUnicode=true&amp;characterEncoding=UTF-8"></property>
  <property name="username" value="root"></property>
  <property name="password" value="root"></property>
 </bean>

仔細看上邊紅色標示的部分是"&amp;",不能寫成"&"符號.

到此就成功了.

Tomcat+ssh+Mysql本地正常,遠程伺服器中文亂碼。(轉)

相關文章

聯繫我們

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