【GBK、UTF-八、ISO8859-1】三種編碼方式總結及實例

  感謝:https://blog.csdn.net/youngstar70/article/details/64117297數據庫

 1、總結數組

 在Java中,String的getBytes()方法是獲得一個操做系統默認的編碼格式的字節數組。這個表示在不一樣狀況下,返回的東西不同! 測試

  String.getBytes(String decode)方法會根據指定的decode編碼返回某字符串在該編碼下的byte數組表示,如:編碼

byte[] b_gbk = "深".getBytes("GBK");   //b_gbk的長度爲2 byte[] b_utf8 = "深".getBytes("UTF-8");   //b_utf8的長度爲3 byte[] b_iso88591 = "深".getBytes("ISO8859-1");//   b_iso88591的長度爲1 byte[] b_unicode = "深".getBytes("unicode");  //b_unicode長度爲4

 

  將分別返回「深」這個漢字在GBK、UTF-八、ISO8859-1和unicode編碼下的byte數組表示,此時b_gbk的長度爲2,b_utf8的長度爲3,b_iso88591的長度爲1,unicode爲4。 spa

 

  而與getBytes相對的,能夠經過new String(byte[], decode)的方式來還原這個「深」字時,這個new String(byte[], decode)實際是使用decode指定的編碼來將byte[]解析成字符串操作系統

String s_gbk = new String(b_gbk,"GBK");   
String s_utf8 = new String(b_utf8,"UTF-8");   
String s_iso88591 = new String(b_iso88591,"ISO8859-1");   
String s_unicode = new String(b_unicode, "unicode");  

  經過打印s_gbk、s_utf八、s_iso88591和unicode,會發現,s_gbk、s_utf8和unicode都是「深」,而只有s_iso88591是一個不認識的字符,爲何使用ISO8859-1編碼再組合以後,沒法還原「深」字呢,其實緣由很簡單,由於ISO8859-1編碼的編碼表中,根本就沒有包含漢字字符,固然也就沒法經過"深".getBytes("ISO8859-1");來獲得正確的「深」字在ISO8859-1中的編碼值了,因此再經過new String()來還原就無從談起了。 .net

  所以,經過String.getBytes(String decode)方法來獲得byte[]時,必定要肯定decode的編碼表中確實存在String表示的碼值,這樣獲得的byte[]數組才能正確被還原。 debug

  有時候,爲了讓中文字符適應某些特殊要求(如http header頭要求其內容必須爲iso8859-1編碼),可能會經過將中文字符按照字節方式來編碼的狀況,如 code

  String s_iso88591 = new String("深".getBytes("UTF-8"),"ISO8859-1"), xml

  這樣獲得的s_iso8859-1字符串實際是三個在 ISO8859-1中的字符,在將這些字符傳遞到目的地後,目的地程序再經過相反的方式String s_utf8 = new String(s_iso88591.getBytes("ISO8859-1"),"UTF-8")來獲得正確的中文漢字「深」。這樣就既保證了遵照協議規定、也支持中文。 

  一樣,在開發會檢查字符長度,以避免數據庫字段的長度不夠而報錯,考慮到中英文的差別,確定不能用String.length()方法判斷,而需採用String.getBytes().length;

  而這方法將返回該操做系統默認的編碼格式的字節數組。如字符串「Hello!你好!」,在一箇中文WindowsXP系統下,結果爲12,而在英文的UNIX環境下,結果將爲9。

  由於該方法和平臺(編碼)相關的。

  在中文操做系統中,getBytes方法返回的是一個GBK或者GB2312的中文編碼的字節數組,其中中文字符,各佔兩個字節。

  而在英文平臺中,通常的默認編碼是"ISO-8859-1",每一個字符都只取一個字節(而不論是否非拉丁字符)。因此在這種狀況下,應該給其傳入字符編碼字符串,即String.getBytes("GBK").length。

2、main方法測試

 

public static void main(String[] args) {
        String testData = "123abc數據";
        //這次測試前提:參數包含中文
        testU8(testData);//UTF_8-String:123abc數據
        testIso(testData);//ISO_8859_1-String:123abc??
        testChineseTrue(testData);//test3-String:123abc數據
        testChineseFalse(testData);//test4-String:123abc??
    }
    
    /**
     * 正常返回:UTF_8-String:123abc數據
     * @param testdata
     */
    public static void testU8(String testdata){
        byte[] bytes = testdata.getBytes(CharsetUtil.UTF_8);
        String result = new String(bytes,CharsetUtil.UTF_8);
        System.out.println("UTF_8-String:"+result);
    }
    /**
     * 返回有亂碼:123abc??
     * 緣由:ISO8859-1編碼的編碼表中,根本就沒有包含漢字字符。
     * @param testdata
     */
    public static void testIso(String testdata){
        byte[] bytes = testdata.getBytes(CharsetUtil.ISO_8859_1);
        String result = new String(bytes,CharsetUtil.ISO_8859_1);
        System.out.println("ISO_8859_1-String:"+result);
    }
    /**
     * 返回:123abc數據
     * 經過String.getBytes(String decode)方法來獲得byte[]時,必定要肯定decode的編碼表中確實存在String表示的碼值。
     * gbk/utf-8均可以
     * @param testdata
     */
    public static void testChineseTrue(String testdata){
        Object message = null;
        message = new String(testdata.getBytes(CharsetUtil.GBK),CharsetUtil.ISO_8859_1);
        String returnData = message.toString();
        //解析
        byte[] xmlByte =returnData.getBytes(CharsetUtil.ISO_8859_1);
        String xml = "";
        xml = new String(xmlByte,CharsetUtil.GBK);
        System.out.println("test3-String:"+xml);
    }
    
    /**
     * 當傳入的參數包含中文時,執行該方法出現亂碼。 返回:test4-String:123abc??
     * 緣由:經過String.getBytes(String decode)方法來獲得byte[]時,必定要肯定decode的編碼表中確實存在String表示的碼值。
     * 而ISO8859-1編碼的編碼表中,根本就沒有包含漢字字符。
     * @param testdata
     */
    public static void testChineseFalse(String testdata){
        Object message = null;
        message = new String(testdata.getBytes(CharsetUtil.ISO_8859_1),CharsetUtil.GBK);
        String returnData = message.toString();
        //解析
        byte[] xmlByte =returnData.getBytes(CharsetUtil.GBK);
        String xml = "";
        xml = new String(xmlByte,CharsetUtil.ISO_8859_1);
        System.out.println("test4-String:"+xml);
    }

 

 

3、本地代碼解析:

    //將接收到的message編碼後傳送給後臺
    public ChannelBuffer encode(Object message) throws TransportCodecException {
        try{
            //message雖然說是Object類型,看不到具體類型,但debug知道其數據格式爲byte[],字節數組形式,能夠強轉爲byte[],而後再經過New String(byte[],charset)方法將byte[]轉換爲String類型
            //由於不肯定接收到的message是什麼編碼格式,這裏會統一轉成gbk編碼。
            message = new String((byte[])message,CharsetUtil.GBK);
            String gbkMessage = message.toString();
            
            //當計算字段長度時,因爲中英文的差別,確定不能用String.length()方法判斷,而需採用String.getBytes().length;
            byte[] arrayOfByte = gbkMessage.getBytes(CharsetUtil.GBK);
            String requestByte = String.valueOf(arrayOfByte.length);
            String request = StringUtils.leftPad(requestByte,6,"0") + gbkMessage;
            
            LogConsole.info("xxx request message: " + request);
            return ChannelBuffers.copiedBuffer(request.getBytes(CharsetUtil.GBK)); //
        }
        catch(Exception e){
        }
        return null;
    }
    //解析接收後臺的報文,後臺中文是用utf-8編碼的,而後總體用iso再封一次。
    //因此咱們接收到後,會先用iso解下,decode方法返回的數據格式是byte[],再經過new String(xmlByte,CharsetUtil.UTF_8)將其按照utf-8解析。
    public Object decode(ChannelBuffer buffer) throws TransportCodecException {
        //ChannelBuffer該類型是本系統本身封裝,經過該方法將ChannelBuffer轉換爲String類型,這時候的中文仍是亂碼,以後會用utf-8解下。
        String _message = buffer.toString(CharsetUtil.ISO_8859_1);
        
        if (_message.length() <= 0){
            return null;
        }
        
        if (isDirect){
            return buffer;
        }
        else{
            if (exchangeLength == -1){
                exchangeLength = fixedLength(_message,buffer);//後臺返回報文格式爲:6位的長度位+完整報文,該方法是處理長度位
            }
            
            int readableLength = buffer.readableBytes();
            if (hasRemaining(readableLength)){
                clear();
                LogConsole.info("xxx response message:" + _message);
                return _message.substring(fixedLength).getBytes(CharsetUtil.ISO_8859_1);
            }
            
            return null;
        }
    }
    //byte[]轉String
    xml = new String(xmlByte,CharsetUtil.UTF_8);
相關文章
相關標籤/搜索