gpt4 book ai didi

java - JarFile/ZipFile 缓存?

转载 作者:行者123 更新时间:2023-12-01 05:44:26 24 4
gpt4 key购买 nike

我需要验证我的应用程序中的签名 jar。我发现我可以通过阅读所有内容来做到这一点,如下所示:

public boolean verifyJar(String filePath) {
try {
JarFile jar = new JarFile(filePath, true);
Enumeration<JarEntry> entries = jar.entries();
while (entries.hasMoreElements()) {
JarEntry entry = entries.nextElement();
InputStream is = jar.getInputStream(entry);
byte[] buffer = new byte[10000];
while (is.read(buffer, 0, buffer.length) != -1) {
// we just read. this will throw a SecurityException
// if a signature/digest check fails.
}
is.close();
}
return true;
} catch (Exception e) {
return false;
}
}

如果我使用有效的 jar 执行检查器,它就会通过。如果我把 jar 切成两半而损坏它,它就会失败。但是,如果我在一个进程中执行这两项操作,则第二次检查会通过(就好像它读取了文件的前一版本一样)!

public static void main(String[] args) throws Exception {
String path = "src/test/resources/temp/lib.jar";
// Passes - that's good
System.out.println(new Validator().verifyJar(path));

byte[] content = FileUtil.readFile(path);
FileUtil.save(path, Arrays.copyOf(content, content.length / 2));
// Passes - but it shouldn't.
// Fails if the first check is commented out though.
System.out.println(new Validator().verifyJar(path));
}

所以看起来 ZipFileJarFile 是以某种方式缓存的。如何抑制这种行为?

最佳答案

ZipFile 必须关闭才能使 native 代码不缓存。如果路径和 File.lastModified 相同,则 Iirc ZipFile 会包装相同的句柄 (jzfile)。

或者触摸 File.lastModified 也可以达到目的,但需要关闭手动打开的任何内容(包括 ZipFile)以防止资源泄漏。

关于java - JarFile/ZipFile 缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6275838/

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