zoukankan      html  css  js  c++  java
  • MD5加密

    package utils;
    import java.io.UnsupportedEncodingException;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    public class MD5Util {
     
     public static void main(String[] args) {
     }
     /**
         * MD5 加密
         */
        public static String getMD5Str(String str) {
            MessageDigest messageDigest = null;
     
            try {
                messageDigest = MessageDigest.getInstance("MD5");
     
                messageDigest.reset();
     
                messageDigest.update(str.getBytes("UTF-8"));
            } catch (NoSuchAlgorithmException e) {
                System.out.println("NoSuchAlgorithmException caught!");
                System.exit(-1);
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
     
            byte[] byteArray = messageDigest.digest();
     
            StringBuffer md5StrBuff = new StringBuffer();
     
            for (int i = 0; i < byteArray.length; i++) {            
                if (Integer.toHexString(0xFF & byteArray[i]).length() == 1)
                    md5StrBuff.append("0").append(Integer.toHexString(0xFF & byteArray[i]));
                else
                    md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));
            }
     
            return md5StrBuff.toString();
        }
    }
  • 相关阅读:
    前端学习之jquery
    Http协议
    JavaScript 的简单学习2
    面向对象高级编程(1)-使用__slots__
    面向对象编程(4)-获取对象信息
    面向对象编程(3)-继承和多态
    面向对象编程(2)-访问限制
    面向对象编程(1)-类和实例
    模块(2)-安装第三方模块
    模块(1)-使用模块
  • 原文地址:https://www.cnblogs.com/lbbk/p/11275266.html
Copyright © 2011-2022 走看看