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

答:示例代码如下:

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