Java String編碼轉換

來源:互聯網
上載者:User

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

相關文章

聯繫我們

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