java md5工具类

来源:互联网 发布:外贸邮件群发软件 编辑:程序博客网 时间:2024/05/29 16:54

public class Md5Util{

public static String md5(String str){     String reStr = null;     try {         MessageDigest md5 = MessageDigest.getInstance("MD5");         byte[] bytes = md5.digest(str.getBytes());         StringBuffer stringBuffer = new StringBuffer();         for (byte b : bytes){             int bt = b&0xff;             if (bt < 16){                 stringBuffer.append(0);             }              stringBuffer.append(Integer.toHexString(bt));         }         reStr = stringBuffer.toString();     } catch (NoSuchAlgorithmException e) {         e.printStackTrace();     }     return reStr;  }   /*public static void main(String []orgs){    System.out.println(Md5Util.md5("123456"));}*/

}

原创粉丝点击