gpt4 book ai didi

java - 无法将文件放入 Java 字节数组

转载 作者:行者123 更新时间:2023-11-29 10:09:05 26 4
gpt4 key购买 nike

我正在研究为给定文件生成校验和的 Java 代码。我正在使用 Gogole 的 Guava 库进行哈希处理。这是代码-

import com.google.common.hash.HashCode;
import com.google.common.hash.HashFunction;
import com.google.common.hash.Hashing;

private HashCode doHash(File file) throws IOException {
HashFunction hc = Hashing.murmur3_128();
HashCode hsCode = hc.newHasher().putBytes(com.google.common.io.Files.asByteSource(file).read()).hash();
return hsCode;
}

我为一个大小为 2.8GB 的​​文件运行了这段代码。它引发了以下错误 -

Exception in thread "main" java.lang.OutOfMemoryError: 2945332859 bytes is too large to fit in a byte array
at com.google.common.io.ByteStreams.toByteArray(ByteStreams.java:232)
at com.google.common.io.Files$FileByteSource.read(Files.java:154)
...

我可以在这里使用另一种数据结构吗?或者我应该寻找另一种策略将文件提供给哈希函数吗?

最佳答案

Guava 的 HashFunctions 不知道如何处理 ByteSources。但是 ByteSources 知道如何处理 HashFunctions。就那样做。

HashCode hsCode = Files.asByteSource(file).hash(hc);

关于java - 无法将文件放入 Java 字节数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51147242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com