首页 > 学院 > 开发设计 > 正文

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

2019-11-06 09:14:45
字体:
来源:转载
供稿:网友

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");


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表