• 判断字符串的编码


    /** 

    •      * 判断字符串的编码 
    •      * 
    •      * @param str 
    •      * @return 
    •      */  
    •     public static String getEncoding(String str) {  
    •         String encode = "GB2312";  
    •         try {  
    •             if (str.equals(new String(str.getBytes(encode), encode))) {  
    •                 String s = encode;  
    •                 return s;  
    •             }  
    •         } catch (Exception exception) {  
    •         }  
    •         encode = "ISO-8859-1";  
    •         try {  
    •             if (str.equals(new String(str.getBytes(encode), encode))) {  
    •                 String s1 = encode;  
    •                 return s1;  
    •             }  
    •         } catch (Exception exception1) {  
    •         }  
    •         encode = "UTF-8";  
    •         try {  
    •             if (str.equals(new String(str.getBytes(encode), encode))) {  
    •                 String s2 = encode;  
    •                 return s2;  
    •             }  
    •         } catch (Exception exception2) {  
    •         }  
    •         encode = "GBK";  
    •         try {  
    •             if (str.equals(new String(str.getBytes(encode), encode))) {  
    •                 String s3 = encode;  
    •                 return s3;  
    •             }  
    •         } catch (Exception exception3) {  
    •         }  
    •         return "";  
    •     }  
    • }  
  • 相关阅读:
    关于GIS从业人员的定位
    《企业应用架构模式》读书笔记(4)
    各大网络、软件巨头涉足Web GIS
    流水帐(2005.5)
    Xtreme Suite 和 Toolkit 9.6发布
    一个算法问题
    推荐2个最近使用的软件
    linux之pmap命令
    linux 文件系统简介
    百度脚本笔试题两道
  • 原文地址:https://www.cnblogs.com/lbjz/p/3365292.html
Copyright © 2020-2023  润新知