隨筆 - 100  文章 - 50  trackbacks - 0
          <2025年5月>
          27282930123
          45678910
          11121314151617
          18192021222324
          25262728293031
          1234567

          常用鏈接

          留言簿(3)

          隨筆分類

          隨筆檔案

          文章分類

          文章檔案

          收藏夾

          我收藏的一些文章!

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          無論是對程序的本地化還是國際化,都會涉及到字符編碼的轉換的問題。尤其在web應用中常常需要處理中文字符,這時就需要進行字符串的編碼轉換,將字符串編碼轉換為GBK或者GB2312。

          一、關鍵技術點:
              1、當前流行的字符編碼格式有:US-ASCII、ISO-8859-1、UTF-8、UTF-16BE、UTF-16LE、UTF-16、GBK、GB2312等,其中GBK、GB2312是專門處理中文編碼的。
              2、String的getBytes方法用于按指定編碼獲取字符串的字節(jié)數(shù)組,參數(shù)指定了解碼格式,如果沒有指定解碼格式,則按系統(tǒng)默認編碼格式。
              3、String的“String(bytes[] bs, String charset)”構造方法用于把字節(jié)數(shù)組按指定的格式組合成一個字符串對象
             
          二、實例演示: 

           

          package book.String;

          import java.io.UnsupportedEncodingException;

          /**
           * 轉換字符串的編碼
           * 
          @author joe
           *
           
          */


          public class ChangeCharset {
              
          /** 7位ASCII字符,也叫作ISO646-US、Unicode字符集的基本拉丁塊      */
              
          public static final String US_ASCII = "US-ASCII";
              
          /** ISO拉丁字母表 No.1,也叫做ISO-LATIN-1     */
              
          public static final String ISO_8859_1 = "ISO-8859-1";
              
          /** 8 位 UCS 轉換格式     */
              
          public static final String UTF_8 = "UTF-8";
              
          /** 16 位 UCS 轉換格式,Big Endian(最低地址存放高位字節(jié))字節(jié)順序     */
              
          public static final String UTF_16BE = "UTF-16BE";
              
          /** 16 位 UCS 轉換格式,Litter Endian(最高地址存放地位字節(jié))字節(jié)順序     */
              
          public static final String UTF_16LE = "UTF-16LE";
              
          /** 16 位 UCS 轉換格式,字節(jié)順序由可選的字節(jié)順序標記來標識     */
              
          public static final String UTF_16 = "UTF-16";
              
          /** 中文超大字符集     **/
              
          public static final String GBK = "GBK";
              
              
          public static final String GB2312 = "GB2312";
              
              
          /** 將字符編碼轉換成US-ASCII碼     */
              
          public String toASCII(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, US_ASCII);
              }

              
              
          /** 將字符編碼轉換成ISO-8859-1     */
              
          public String toISO_8859_1(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, ISO_8859_1);
              }

              
              
          /** 將字符編碼轉換成UTF-8     */
              
          public String toUTF_8(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, UTF_8);
              }

              
              
          /** 將字符編碼轉換成UTF-16BE     */
              
          public String toUTF_16BE(String str) throws UnsupportedEncodingException{
                  
          return this.changeCharset(str, UTF_16BE);
              }

              
              
          /** 將字符編碼轉換成UTF-16LE     */
              
          public String toUTF_16LE(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, UTF_16LE);
              }

              
              
          /** 將字符編碼轉換成UTF-16     */
              
          public String toUTF_16(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, UTF_16);
              }

              
              
          /** 將字符編碼轉換成GBK     */
              
          public String toGBK(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str, GBK);
              }

              
              
          /** 將字符編碼轉換成GB2312     */
              
          public String toGB2312(String str) throws UnsupportedEncodingException {
                  
          return this.changeCharset(str,GB2312);
              }

              
              
          /**
               * 字符串編碼轉換的實現(xiàn)方法
               * 
          @param str    待轉換的字符串
               * 
          @param newCharset    目標編碼
               
          */

              
          public String changeCharset(String str, String newCharset) throws UnsupportedEncodingException {
                  
          if(str != null{
                      
          //用默認字符編碼解碼字符串。與系統(tǒng)相關,中文windows默認為GB2312
                      byte[] bs = str.getBytes();
                      
          return new String(bs, newCharset);    //用新的字符編碼生成字符串
                  }

                  
          return null;
              }

              
              
          /**
               * 字符串編碼轉換的實現(xiàn)方法
               * 
          @param str    待轉換的字符串
               * 
          @param oldCharset    源字符集
               * 
          @param newCharset    目標字符集
               
          */

              
          public String changeCharset(String str, String oldCharset, String newCharset) throws UnsupportedEncodingException {
                  
          if(str != null{
                      
          //用源字符編碼解碼字符串
                      byte[] bs = str.getBytes(oldCharset);
                      
          return new String(bs, newCharset);
                  }

                  
          return null;
              }

              
              
          public static void main(String[] args) throws UnsupportedEncodingException {
                  ChangeCharset test 
          = new ChangeCharset();
                  String str 
          = "This is a 中文的 String!";
                  System.out.println(
          "str:" + str);
                  
                  String gbk 
          = test.toGBK(str);
                  System.out.println(
          "轉換成GBK碼:" + gbk);
                  System.out.println();
                  
                  String ascii 
          = test.toASCII(str);
                  System.out.println(
          "轉換成US-ASCII:" + ascii);
                  System.out.println();
                  
                  String iso88591 
          = test.toISO_8859_1(str);
                  System.out.println(
          "轉換成ISO-8859-1碼:" + iso88591);
                  System.out.println();
                  
                  gbk 
          = test.changeCharset(iso88591, ISO_8859_1, GBK);
                  System.out.println(
          "再把ISO-8859-1碼的字符串轉換成GBK碼:" + gbk);
                  System.out.println();
                  
                  String utf8 
          = test.toUTF_8(str);
                  System.out.println();
                  System.out.println(
          "轉換成UTF-8碼:" + utf8);
                  String utf16be 
          = test.toUTF_16BE(str);
                  System.out.println(
          "轉換成UTF-16BE碼:" + utf16be);
                  gbk 
          = test.changeCharset(utf16be, UTF_16BE, GBK);
                  System.out.println(
          "再把UTF-16BE編碼的字符轉換成GBK碼:" + gbk);
                  System.out.println();
                  
                  String utf16le 
          = test.toUTF_16LE(str);
                  System.out.println(
          "轉換成UTF-16LE碼:" + utf16le);
                  gbk 
          = test.changeCharset(utf16le, UTF_16LE, GBK);
                  System.out.println(
          "再把UTF-16LE編碼的字符串轉換成GBK碼:" + gbk);
                  System.out.println();
                  
                  String utf16 
          = test.toUTF_16(str);
                  System.out.println(
          "轉換成UTF-16碼:" + utf16);
                  String gb2312 
          = test.changeCharset(utf16, UTF_16, GB2312);
                  System.out.println(
          "再把UTF-16編碼的字符串轉換成GB2312碼:" + gb2312);
              }


          }

           

          輸出結果:

           

          str:This is a 中文的 String!
          轉換成GBK碼:This 
          is a 中文的 String!

          轉換成US
          -ASCII:This is a ?????? String!

          轉換成ISO
          -8859-1碼:This is a ?????? String!

          再把ISO
          -8859-1碼的字符串轉換成GBK碼:This is a 中文的 String!


          轉換成UTF
          -8碼:This is a ????? String!
          轉換成UTF
          -16BE碼:周楳?猠慍????瑲楮朡
          再把UTF
          -16BE編碼的字符轉換成GBK碼:This is a 中文的 String!

          轉換成UTF
          -16LE碼:桔獩槧?????匠牴湩Ⅷ
          再把UTF
          -16LE編碼的字符串轉換成GBK碼:This is a 中文的 String!

          轉換成UTF
          -16碼:周楳?猠慍????瑲楮朡
          再把UTF
          -16編碼的字符串轉換成GB2312碼:?This is a 中文的 String!

           

          三、源碼分析:
              更改字符串編碼的步驟為:
              1、調用String的getByte方法對字符串進行解碼,得到字符串的字節(jié)數(shù)組(字節(jié)數(shù)組不攜帶任何有關編碼格式的信息,只有字符才有編碼格式)
              2、根據字節(jié)數(shù)組和新的字符編碼構造一個新的String對象,得到的就是按照新的字符編碼生成的字符串

          posted on 2012-02-16 20:48 fly 閱讀(256) 評論(0)  編輯  收藏 所屬分類: java學習
          主站蜘蛛池模板: 莱阳市| 长子县| 定结县| 鸡西市| 望都县| 临颍县| 乌苏市| 霍邱县| 济阳县| 临汾市| 永定县| 阿拉善盟| 同江市| 铜陵市| 澜沧| 什邡市| 永和县| 平武县| 中阳县| 秭归县| 靖江市| 涪陵区| 榆树市| 诸城市| 民乐县| 土默特右旗| 芦山县| 河津市| 贵州省| 葵青区| 大田县| 广昌县| 芦山县| 凤冈县| 丰都县| 隆化县| 中阳县| 丰宁| 余庆县| 县级市| 富源县|