判断字符串编码类型
程序员文章站
2022-07-14 19:40:45
...
public static String getEncoding(String str) {
String encode = "GBK";
try {
if (str.equals(new String(str.getBytes(encode), encode))) {
return encode;
}
} catch (Exception exception) { ... }
encode = "UTF-8"
encode = "SJIS"
}
上一篇: Java进阶(三十) 判断字符串编码类型
下一篇: java_获取字符串编码(待完善)