牛骨文教育服务平台(让学习变的简单)
博文笔记

MD5加密工具类 UTF-8编码格式签名 UTF-8编译和反编译

创建时间:2017-02-27 投稿人: 浏览次数:1585

MD5加密工具类,UTF-8编码格式:

public static String MD5(String string) {

  byte[] hash;  
       try {  
           hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));  
       } catch (NoSuchAlgorithmException e) {  
           throw new RuntimeException("Huh, MD5 should be supported?", e);  
       } catch (UnsupportedEncodingException e) {  
           throw new RuntimeException("Huh, UTF-8 should be supported?", e);  
       }  
 
       StringBuilder hex = new StringBuilder(hash.length * 2);  
       for (byte b : hash) {  
           if ((b & 0xFF) < 0x10) hex.append("0");  
           hex.append(Integer.toHexString(b & 0xFF));  
       }  
       return hex.toString();  

}


UTF-8反编译:

String a="app_package_name%3Dcom.flyhand.yunpos";

String b=URLDecoder.decode(a, "UTF-8");


UTF-8编译:

String c="abcd";

String d=URLEncoder.encode(c, "utf-8");








声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。