<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 100  文章 - 50  trackbacks - 0
    <2025年7月>
    293012345
    6789101112
    13141516171819
    20212223242526
    272829303112
    3456789

    常用鏈接

    留言簿(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方法用于按指定編碼獲取字符串的字節數組,參數指定了解碼格式,如果沒有指定解碼格式,則按系統默認編碼格式。
        3、String的“String(bytes[] bs, String charset)”構造方法用于把字節數組按指定的格式組合成一個字符串對象
       
    二、實例演示: 

     

    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(最低地址存放高位字節)字節順序     */
        
    public static final String UTF_16BE = "UTF-16BE";
        
    /** 16 位 UCS 轉換格式,Litter Endian(最高地址存放地位字節)字節順序     */
        
    public static final String UTF_16LE = "UTF-16LE";
        
    /** 16 位 UCS 轉換格式,字節順序由可選的字節順序標記來標識     */
        
    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);
        }

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

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

            
    return null;
        }

        
        
    /**
         * 字符串編碼轉換的實現方法
         * 
    @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方法對字符串進行解碼,得到字符串的字節數組(字節數組不攜帶任何有關編碼格式的信息,只有字符才有編碼格式)
        2、根據字節數組和新的字符編碼構造一個新的String對象,得到的就是按照新的字符編碼生成的字符串

    posted on 2012-02-16 20:48 fly 閱讀(261) 評論(0)  編輯  收藏 所屬分類: java學習
    主站蜘蛛池模板: 亚洲日产韩国一二三四区| 嫩草影院免费观看| 亚洲色婷婷综合久久| 一级黄色免费大片| 男人的天堂亚洲一区二区三区 | 国产精品免费看香蕉| 伊人久久亚洲综合影院首页| 99热在线精品免费全部my| 亚洲成a人片在线不卡| 99久久国产热无码精品免费 | 亚洲一区二区三区日本久久九| 大地资源中文在线观看免费版| 国产亚洲av片在线观看16女人| 国产一区二区三区免费| 亚洲午夜未满十八勿入| 91免费国产在线观看| 亚洲精品无码你懂的| 亚洲av再在线观看| 丁香花在线视频观看免费| 亚洲国产片在线观看| 全免费a级毛片免费看无码| 免费毛片毛片网址| 亚洲妇熟XXXX妇色黄| 国产成人yy免费视频| 亚洲av成人中文无码专区| 亚洲VA综合VA国产产VA中| 成人性生交大片免费看中文| 亚洲无圣光一区二区| 在线播放高清国语自产拍免费| 无码日韩人妻AV一区免费l | 成人免费福利电影| 免费国产草莓视频在线观看黄| 亚洲日韩中文字幕在线播放| 蜜臀98精品国产免费观看| 亚洲精品无码专区在线播放| 国产a v无码专区亚洲av| 97视频免费在线| 免费精品视频在线| 亚洲理论片在线中文字幕| 亚洲av成人一区二区三区在线观看| A片在线免费观看|