目前共有5篇帖子。
Android獲取String的MD5值
1樓 巨大八爪鱼 2015-5-10 11:15


/** 
 * 將字符串轉成MD5值 
 *  
 * @param string 
 * @return 
 */  
public static String stringToMD5(String string) {  
    byte[] hash;  
  
    try {  
        hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));  
    } catch (NoSuchAlgorithmException e) {  
        e.printStackTrace();  
        return null;  
    } catch (UnsupportedEncodingException e) {  
        e.printStackTrace();  
        return null;  
    }  
  
    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();  

2樓 巨大八爪鱼 2015-5-10 11:15
3樓 polygon1024 2015-5-10 13:02
看我的Github(geno1024)中的Sentence-hasher吧。
4樓 巨大八爪鱼 2015-5-10 22:46
回復:3樓
在哪兒?
5樓 polygon1024 2015-5-11 23:41

github.com/geno1024/sentence-hasher

沒記錯的話

回復:4樓

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。