vote up 8 vote down star
1

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 (and the best way) to get the md5 checksum of a file.

Any ideas on how to go forward?

Thanks.

flag

5 Answers

vote up 3 vote down check

There's an example at Real's Java-How-to using the MessageDigest class.

I'd post the code here, but it's a bit longish, and I don't think Real's going anywhere.

link|flag
1  
Yep ... still on-line after 11 years! :-) – RealHowTo Nov 21 '08 at 2:41
vote up 14 vote down

There's an input stream decorator, java.security.DigestInputStream, so that you can compute the digest while using the input stream as you normally would, instead of having to make an extra pass over the data.

MessageDigest md = MessageDigest.getInstance("MD5");
InputStream is = new FileInputStream("file.txt");
try {
  is = new DigestInputStream(is, md);
  // read stream to EOF as normal...
}
finally {
  is.close();
}
byte[] digest = md.digest();
link|flag
This was very helpful as well. – Jack Nov 20 '08 at 15:47
I agree, very elegant way to calculate the checksum on the fly if you're already doing something with the bytes (i.e. reading them in on from an HTTP connection). – Marc Novakowski Dec 6 '08 at 1:51
vote up 4 vote down

I recently had to do this for just a dynamic string, MessageDigest can represent the hash in numerous way's. To get the signature of the file like you would get with the md5sum command I had to do something like the this:

try {
   String s = "TEST STRING";
   MessageDigest md5 = MessageDigest.getInstance("MD5");
   md5.update(s.getBytes(),0,s.length());
   String signature = new BigInteger(1,md5.digest()).toString(16);
   System.out.println("Signature: "+signature);

} catch (final NoSuchAlgorithmException e) {
   e.printStackTrace();
}

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.

Good Luck, Brian G

link|flag
The signature is the digest in hexadecimal format. I too found the hexadecimal representation to work where, as you say, other representations do not work. Thank you for putting this up. – Amit Kumar Oct 12 at 9:33
vote up 0 vote down

Maybe this will help. You could also look up the spec but that would take more doing as it's complicated.

link|flag
vote up 0 vote down

Check the MessageDigest class.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.