码迷,mamicode.com
首页 > 其他好文 > 详细

MD5

时间:2015-08-31 21:04:59      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class MD5 {
 2     
 3     // 全局数组
 4     private final static String[] strDigits = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };
 6 
 7     // 返回形式为数字跟字符串
 8     private static String byteToArrayString(byte bByte) {
 9         int iRet = bByte;
11         if (iRet < 0) {
12             iRet += 256;
13         }
14         int iD1 = iRet / 16;
15         int iD2 = iRet % 16;
16         return strDigits[iD1] + strDigits[iD2];
17     }
18 
19     // 转换字节数组为16进制字串
20     private static String byteToString(byte[] bByte) {
21         StringBuffer sBuffer = new StringBuffer();
22         for (int i = 0; i < bByte.length; i++) {
23             sBuffer.append(byteToArrayString(bByte[i]));
24         }
25         return sBuffer.toString();
26     }
27 
28     public static String GetMD5Code(String strObj) {
29         String resultString = null;
30         try {
31             resultString = new String(strObj);
32             MessageDigest md = MessageDigest.getInstance("MD5");
33             resultString = byteToString(md.digest(strObj.getBytes()));
34         } catch (NoSuchAlgorithmException ex) {
35             ex.printStackTrace();
36         }
37         return resultString;
38     }
39 }

 

MD5

标签:

原文地址:http://www.cnblogs.com/xiaojiayi/p/4773892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!