MD5加密算法,在网上看了看,整理了一段小代码,以后直接拿来用

来源:互联网 发布:mac linux双系统 编辑:程序博客网 时间:2024/05/01 06:29
package com.test;

import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Md5Util {
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();    
   }    
    
public static void main(String[] args) {
Md5Util md = new Md5Util();
Md5Util md2 = new Md5Util();
System.out.println(md2.getMD5Str("hello"));
}
}

原创粉丝点击