根据String 类的构造方法里设定字符集的内容如下:
public String(byte[] bytes,String charsetName) throws UnsrpportedEncodingException
bytes -- 指定的字节数组;
charsetName -- 指定的字符集。
具体用法如下:
String string = "中国";
byte bytes[] = string.getBytes();
String s = new String(bytes,"shift_jis");
System.out.println(s);
所输出的s是指定了字符集"shift_jis"的字符串。