android utf-8 转gb2312

android 通过EditText.getText().toString(),得到设备的名称(devicename),android默认的编码是utf-8,现在修改支持中文的名字,必须要对devicename字符串转gbk或者gb2312,开始觉得字符串转码,本来就有接口:deviceName =  new String(deviceName.getBytes(),"gb2312");这样操作后打印是乱码,通过http.post过去linux平台修改名字,还是乱码,一直在想,怎么android自带字符串编码转换有问题么,查了很多资料。

先查看编码,用网页post“哈哈”,用抓包工具,知道网页发送gb2312编码的”bac7bac7“,然后将devicename.getbyte()转byte2hex,看是否跟网页发送的字符一样,发现是不一样的。开始怀疑new String(deviceName.getBytes(),"gb2312")是不是不行,现在想的是怎样将devicename编码成”bac7bac7“,然后试了gbk,ios-8859-1等,都不行。


后来发现,这样转码是不行的。

byte[] bb = null;

bb = deviceName.getBytes("gb2312");----》转到16进制刚好是bac7bac7

deviceName = new String(bb,"gb2312"); ----打印呵呵,原来是要这样转码的。


private static String byte2hex(byte [] buffer){  
        String h = "";  
          
        for(int i = 0; i < buffer.length; i++){  
            String temp = Integer.toHexString(buffer[i] & 0xFF);  
            if(temp.length() == 1){  
                temp = "0" + temp;  
            }  
            h = h + temp;  
        }  
          
        return h;  
          
    }  

你可能感兴趣的:(android,方法,Android,编码,乱码,utf-8)