MD5是經常使用的加密算法,也常常用於校驗信息完整,如文件的完整性。用術語講,MD5是一種消息摘要算法(Message Digest Algorithm)。另外還有一種經常使用的消息摘要算法SHA1。若是想了解這些的話,能夠去百度百科:MD五、SHA一、消息摘要算法。java
Java已經實現了MD五、SHA1算法。利用java.security.MessageDigest類就能夠獲取字符串和文件的MD5以及SHA1結果。
1.字符串的MD5(下面的代碼有詳細註釋)git
public static String stringMD5(String input) {算法
try { // 拿到一個MD5轉換器(若是想要SHA1參數換成」SHA1」) MessageDigest messageDigest =MessageDigest.getInstance("MD5"); // 輸入的字符串轉換成字節數組 byte[] inputByteArray = input.getBytes(); // inputByteArray是輸入字符串轉換獲得的字節數組 messageDigest.update(inputByteArray); // 轉換並返回結果,也是字節數組,包含16個元素 byte[] resultByteArray = messageDigest.digest(); // 字符數組轉換成字符串返回 return byteArrayToHex(resultByteArray); } catch (NoSuchAlgorithmException e) { return null; }
}數組
//下面這個函數用於將字節數組換成成16進制的字符串app
public static String byteArrayToHex(byte[] byteArray) {函數
// 首先初始化一個字符數組,用來存放每一個16進制字符 char[] hexDigits = {'0','1','2','3','4','5','6','7','8','9', 'A','B','C','D','E','F' }; // new一個字符數組,這個就是用來組成結果字符串的(解釋一下:一個byte是八位二進制,也就是2位十六進制字符(2的8次方等於16的2次方)) char[] resultCharArray =new char[byteArray.length * 2]; // 遍歷字節數組,經過位運算(位運算效率高),轉換成字符放到字符數組中去 int index = 0; for (byte b : byteArray) { resultCharArray[index++] = hexDigits[b>>> 4 & 0xf]; resultCharArray[index++] = hexDigits[b& 0xf]; } // 字符數組組合成字符串返回 return new String(resultCharArray);
}工具
從上面代碼能夠看出,使用MessageDigest對字符串進行MD5算法的步驟是,先將字符串轉換成字節數組,在進行MD5算法,最後返回的也是一個字節數組,要咱們本身轉成32位的字符串。測試
2.文件MD5加密
對文件進行MD5也能夠像字符串MD5同樣的,首先要把文件轉成字節數組,後面和字符串MD5徹底同樣。code
可是若是是一個特別大的文件,一會兒把一個文件的數組所有讀到內存中,那麼估計內存也吃不消。
對於大文件,可使用DigestInputStream。
public static String fileMD5(String inputFile) throws IOException {
// 緩衝區大小(這個能夠抽出一個參數) int bufferSize = 256 * 1024; FileInputStream fileInputStream = null; DigestInputStream digestInputStream = null; try { // 拿到一個MD5轉換器(一樣,這裏能夠換成SHA1) MessageDigest messageDigest =MessageDigest.getInstance("MD5"); // 使用DigestInputStream fileInputStream = new FileInputStream(inputFile); digestInputStream = new DigestInputStream(fileInputStream,messageDigest); // read的過程當中進行MD5處理,直到讀完文件 byte[] buffer =new byte[bufferSize]; while (digestInputStream.read(buffer) > 0); // 獲取最終的MessageDigest messageDigest= digestInputStream.getMessageDigest(); // 拿到結果,也是字節數組,包含16個元素 byte[] resultByteArray = messageDigest.digest(); // 一樣,把字節數組轉換成字符串 return byteArrayToHex(resultByteArray); } catch (NoSuchAlgorithmException e) { return null; } finally { try { digestInputStream.close(); } catch (Exception e) { } try { fileInputStream.close(); } catch (Exception e) { } }
}
上面的方法本人親測過大小約4G的文件,得出的MD5值和網上下載的一個MD5小工具獲得的MD5值同樣,說明上面的方式沒有什麼問題。不過取大文件的MD5很慢,4G的文件跑一下要一分鐘(I5處理器 6G內存 64位XP系統 本本)。
附1:我在網上還看到一種給文件MD5的方式
[java] public static String getFileMD5String(File file) throws IOException{ FileInputStream in = new FileInputStream(file); FileChannel ch =in.getChannel(); MappedByteBuffer byteBuffer =ch.map(FileChannel.MapMode.READ_ONLY, 0,file.length()); messagedigest.update(byteBuffer); return byteArrayToHex (messagedigest.digest()); } 我也嘗試過這樣的方式,可是若是文件大於2G,那麼這種方式會出現異常。因此不推薦。
附2:測試文件MD5的main方法
[java] public static void main(String[] args) {
long startTime = System.currentTimeMillis();
try { System.out.println(fileMD5("E:/軟件/VS2008ProEdition90DayTrialCHSX1435983.iso")); } catch (IOException e) { e.printStackTrace(); }
long endTime = System.currentTimeMillis();
System.out.println((endTime - startTime)/1000); }