zoukankan      html  css  js  c++  java
  • 判断字符串的编码

    /** 

    •      * 判断字符串的编码 
    •      * 
    •      * @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 "";  
    •     }  
    • }  
  • 相关阅读:
    echarts做飞线图
    git 检出项目部分目录(稀疏检出)
    nuxt.js引入客户端脚本和第三方库出现window/document/ navigator未定义问题
    防止重复发送 Ajax 请求
    利用CSS、JavaScript及Ajax实现图片预加载的三大方法
    JavaScript中this的指向问题
    掌握jQuery插件开发
    原生javascript实现图片放大镜效果
    javascript实现页面滚屏效果
    JavaScript利用闭包实现模块化
  • 原文地址:https://www.cnblogs.com/lbjz/p/3365292.html
Copyright © 2011-2022 走看看