JAVA将GBK转换成Unicode字符集

41次阅读

共计 240 个字符,预计需要花费 1 分钟才能阅读完成。

/**
* 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;
}
}

正文完
 0