What is the best way to create a SHA-1 for a very large file in pure Java6? How to implement this method:

public abstract String createSha1(java.io.File file);
link|improve this question

77% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Use the MessageDigest class and supply data piece by piece. The example below ignores details like turning byte[] into string and closing the file, but should give you the general idea.

public byte[] createSha1(File file) throws Exception  {
    MessageDigest digest = MessageDigest.getInstance("SHA-1");
    InputStream fis = new FileInputStream(filename);
    int n = 0;
    byte[] buffer = new byte[8192];
    while (n != -1) {
        n = fis.read(buffer);
        if (n > 0) {
            digest.update(buffer, 0, n);
        }
    }
    return digest.digest();
}
link|improve this answer
@Thomas thanks for fixing up the code. – Jeff Foster Jun 9 '11 at 18:41
The DigestInputStream class is even easier to use. Actually maybe not, but it is good to try it as an alternative and compare to this. – GregS Jun 9 '11 at 23:57
feedback

Your Answer

 
or
required, but never shown

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