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.
|
1
|
|
|
|
|
|
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. |
||||
|
|
|
There's an input stream decorator,
|
||||
|
|
|
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:
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 |
|||
|
|
|
Maybe this will help. You could also look up the spec but that would take more doing as it's complicated. |
||
|
|
|
|
Check the MessageDigest class. |
||
|
|