http://wenwen.soso.com/z/q191078042.htm
String newStr = new String(oldStr.getBytes(), "UTF-8");
java中的String類是按照unicode進行編碼的,當使用String(byte[] bytes, String encoding)構造字串時,encoding所指的是bytes中的資料是按照那種方式編碼的,而不是最後產生的String是什麼編碼方式,換句話說,是讓系統把bytes中的資料由encoding編碼方式轉換成unicode編碼。如果不指明,bytes的編碼方式將由jdk根據作業系統決定。
當我們從檔案中讀資料時,最好使用InputStream方式,然後採用String(byte[] bytes, String encoding)指明檔案的編碼方式。不要使用Reader方式,因為Reader方式會自動根據jdk指明的編碼方式把檔案內容轉換成unicode 編碼。
當我們從資料庫中讀文本資料時,採用ResultSet.getBytes()方法取得位元組數組,同樣採用帶編碼方式的字串構造方法即可。
ResultSet rs;
bytep[] bytes = rs.getBytes();
String str = new String(bytes, "gb2312");
不要採取下面的步驟。
ResultSet rs;
String str = rs.getString();
str = new String(str.getBytes("iso8859-1"), "gb2312");
這種編碼轉換方式效率底。之所以這麼做的原因是,ResultSet在getString()方法執行時,預設資料庫裡的資料編碼方式為 iso8859-1。系統會把資料依照iso8859-1的編碼方式轉換成unicode。使用str.getBytes("iso8859-1")把資料還原,然後利用new String(bytes, "gb2312")把資料從gb2312轉換成unicode,中間多了好多步驟。
從HttpRequest中讀參數時,利用reqeust.setCharacterEncoding()方法設定編碼方式,讀出的內容就是正確的了。
轉:http://www.blogjava.net/rabbit/archive/2008/03/27/189009.html