gpt4 book ai didi

java - Apache Commons - 在文件中搜索

转载 作者:行者123 更新时间:2023-12-02 11:40:04 25 4
gpt4 key购买 nike

是否可以创建也在 *.zip 文件中搜索的 IOFileFilter?

我正在寻找所有带有 *.fot 扩展名的文件,该部分位于文件内。

也许还有其他简单的解决方案吗?但我已经编写了工作程序,不想把事情搞得太乱。

最佳答案

这似乎不可能,因为 IOFileFilter 将 zip 文件按其本来面目处理 - 文件。您可以做的是使用 ZipFileEntry

自行检查 Zip 文件
// open a zip file for reading
ZipFile zipFile = new ZipFile("pathToFile.fot");

Enumeration<ZipEntry> entries = zipFile.entries();

while (entries.hasMoreElements()) {
ZipEntry entry = entries.nextElement();

// get the name of the entry
String entryName = entry.getName();

//here do filechecking

}

关于java - Apache Commons - 在文件中搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48652629/

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