欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断字符串编码类型

程序员文章站 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"  
    }