为什么我不能使用 FileInputStream 来提供 MessageDigest 对象?

Why can't I use FileInputStream to feed MessageDigest object?

为什么我必须使用 DigestInputStream 而不是 FileInputStream 来获取文件的摘要?

我编写了一个程序,它从 FileInputStream 读取整数,将它们转换为字节并将它们传递给 MessageDigest 对象的更新方法。但我怀疑它不能正常工作,因为它会计算一个非常大的文件的摘要。为什么不起作用?

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;


public class DigestDemo {

    public static byte[] getSha1(String file) {
        FileInputStream fis = null;
        MessageDigest md = null;

        try {
            fis = new FileInputStream(file);
        } catch(FileNotFoundException exc) {
            System.out.println(exc);
        }

        try {
            md = MessageDigest.getInstance("SHA-1");
        } catch (NoSuchAlgorithmException exc) {
            System.out.println(exc);
        }

        byte b = 0;
        do {

            try {
                b = (byte) fis.read();
            } catch (IOException e) {
                System.out.println(e);
            }

            if (b != -1)
                md.update(b);

        } while(b != -1);

        return md.digest();

    }

    public static void writeBytes(byte[] a) {
        for (byte b : a) {
            System.out.printf("%x", b);
        }
    }

    public static void main(String[] args) {

        String file = "C:\Users\Mike\Desktop\test.txt";
        byte[] digest = getSha1(file);
        writeBytes(digest);

    }

}

您需要将 b 的类型更改为 int,,并且您需要在文件末尾调用 MessageDigest.doFinal(),但这是非常低效的。尝试从字节 数组读取和更新。

这段代码中有太多的 try-catching。将其减少到循环外的一个 try 和两个 catches,