简单做下记录
// 直接上代码
public static String getEncoding(String str) {
String encode = "GB2312";
try {
if (isEncoding(str, encode)) {
// 判断是不是GB2312
return encode;
}
} catch (Exception exception) {
}
encode = "ISO-8859-1";
try {
if (isEncoding(str, encode)) {
// 判断是不是ISO-8859-1
return encode;
}
} catch