I am looking to use Java to get the MD5 checksum of a file. I was really surprised but I haven't been able to find anything that shows how to get the MD5 checksum of a file.
How is it done?
|
|
There's an input stream decorator,
|
|||||||||||
|
|
Use DigestUtils from Apache Commons Codec library:
|
|||||||
|
|
There's an example at Real's Java-How-to using the MessageDigest class. Check that page for examples using CRC32 and SHA-1 as well.
|
||||
|
The com.google.common.hash API offers:
Read the Users Guide (GuavaExplained) - Hashing explained For your usecase: after to version 13
For example a sha-1 digest calculation (change SHA-1 to MD5 to get MD5 digest)
Prior to version 13
For example a crc32 checksum calculation
For example a sha-256 digest calculation (change SHA-256 to MD5 to get MD5 digest)
Note that crc32 is much faster than md5, so use crc32 if you do not need a cryptographically secure checksum. Note also that md5 should not be used to store passwords and the like since it is to easy to brute force, for passwords use bcrypt, scrypt or sha-256 instead. To note is that crc32 has a higer collision rate than the others. |
||||
|
|
|
Guava now provides a new, consistent hashing API that is much more user-friendly than the various hashing APIs provided in the JDK. See Hashing Explained. For a file, you can get the MD5 sum, CRC32 (in the upcoming version 14.0) or many other hashes easily:
|
|||
|
|
|
I recently had to do this for just a dynamic string,
This obviously doesn't answer your question about how to do it specifically for a file, the above answer deals with that quiet nicely. I just spent a lot of time getting the sum to look like most application's display it, and thought you might run into the same trouble. |
||||
|
Or you may get more info http://www.asjava.com/core-java/java-md5-example/ |
|||
|
|
|
We were using code that resembles the code above in a previous post using
However, watch out for using BigInteger here, as it will truncate leading zeros...
(for an example, try I second the suggestion to use Apache Commons Codec, I replaced our own code with that. |
|||
|
|
Another implementation: Fast MD5 Implementation in Java
|
|||
|
|
|
Ok. I had to add. One line implementation for those who already have Apache Commons dependency or are planning to add it:
Hope this helps someone. |
||||
|
|
|
|||
|
|
|
If you're using ANT to build, this is dead-simple. Add the following to your build.xml:
Where jarFile is the JAR you want to generate the MD5 against, and toDir is the directory you want to place the MD5 file. |
|||
|
|