/**
* JAVA 将 GBK 转换成 Unicode 字符集
*
* @param input 待转换字符串
* @return 转换完成字符串
*/
public static String GBToUnicode(String input) throws UnsupportedEncodingException {
if (isEmpty(input)) {
return “”;
}
else {
String s1;
s1 = new String(input.getBytes(“GBK”), “ISO8859_1”);
return s1;
}
}