662.怎样将 GB2312 编码的字符串转换为 ISO-8859-1 编码的字符串?

代码如下所示:

String s1 = "你好";
String s2 = newString(s1.getBytes("GB2312"), "ISO-8859-1");