從數據庫讀取‘name’,然后轉換成中文字符。
byte[] b = rs.getString("name").getBytes("ISO8859_1");
String name = new String(b,"gb2312");
轉載:
/**
* 用getBytes(encoding):返回字符串的一個(gè)byte數組
* 當b[0]為 63時(shí),應該是轉碼錯誤
* A、不亂碼的漢字字符串:
* 1、encoding用GB2312時(shí),每byte是負數;
* 2、encoding用ISO8859_1時(shí),b[i]全是63。
* B、亂碼的漢字字符串:
* 1、encoding用ISO8859_1時(shí),每byte也是負數;
* 2、encoding用GB2312時(shí),b[i]大部分是63。
* C、英文字符串
* 1、encoding用ISO8859_1和GB2312時(shí),每byte都大于0;
* <p/>
* 總結:給定一個(gè)字符串,用getBytes("iso8859_1")
* 1、如果b[i]有63,不用轉碼; A-2
* 2、如果b[i]全大于0,那么為英文字符串,不用轉碼; B-1
* 3、如果b[i]有小于0的,那么已經(jīng)亂碼,要轉碼。 C-1
*/
private static String toGb2312(String str) {
if (str == null) return null;
String retStr = str;
byte b[];
try {
b = str.getBytes("ISO8859_1");
for (int i = 0; i < b.length; i++) {
byte b1 = b[i];
if (b1 == 63)
break; //1
else if (b1 > 0)
continue;//2
else if (b1 < 0) { //不可能為0,0為字符串結束符
retStr = new String(b, "GB2312");
break;
}
}
} catch (UnsupportedEncodingException e) {
// e.printStackTrace(); //To change body of catch statement use File ¦ Settings ¦ File Templates.
}
return retStr;
}
聯(lián)系客服