Bootstrap

java 中文编码字符集转换

1 字符串 getBytes方法

将这个字符串按指定字符集编码成一个字节序列,将结果存储到一个新的字节数组中。
public byte[] getBytes(String charsetName)
        throws UnsupportedEncodingException {
    if (charsetName == null) throw new NullPointerException();
    return StringCoding.encode(charsetName, value, 0, value.length);
}

2 字符串 new String(bytes,charsetName)

将已编码的字符串字节数组解码为对应字符集字符串

public String(byte bytes[], Charset charset) {
    this(bytes, 0, bytes.length, charset);
}

3 例:

3.1 将windows上字符串转为utf-8格式数组进行传输

  String str="中文";

//转成中文按utf-8编码的字节数组  

byte[] bytes=str.getBytes("UTF-8");.

3.2  将从windows传过来的字符串转为utf-8格式字符串

  String str="中文";

byte[] bytes=str.getBytes();.

开始转换:

String str_urf8=new String(bytes,"UTF-8);

;