共计 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;
}
}
正文完
发表至: java
2019-11-14