JAVA ZipFile条目()方法看不到目录

发布于 2024-10-02 18:46:01 字数 605 浏览 3 评论 0原文

我正在研究数字文档和数字签名,并且偶然发现了一个问题。

输入:documentX.adoc - 包含文件和文件夹的 zip 文件。

我需要获取输入文件中的所有内容 - 目录和文件的列表。

我该怎么办:

ZipFile adocFile = new ZipFile(documentXFileName);
ArrayList <String> adocFiles = new ArrayList<String>();
Enumeration <? extends ZipEntry> entries;
entries = adocFile.entries();
for (entries = adocFile.entries(); entries.hasMoreElements();)
{
    adocFiles.add(entries.nextElement().getName());
}

我尝试创建 ArrayList <邮编条目>并添加 ZipEntries 而不是名称 - 仍然没有。也许还有其他方法吗?奇怪的是,ZipEntry 有一个 .isDirectory() 方法...

感谢您的帮助, 马丁

I'm working on digital documents and digital signatures and I've stumbled upon a problem.

Input: documentX.adoc - zip file with files and folders inside.

I need to get all the content in the input file - a list of dirs and files.

What do I do:

ZipFile adocFile = new ZipFile(documentXFileName);
ArrayList <String> adocFiles = new ArrayList<String>();
Enumeration <? extends ZipEntry> entries;
entries = adocFile.entries();
for (entries = adocFile.entries(); entries.hasMoreElements();)
{
    adocFiles.add(entries.nextElement().getName());
}

I've tried to create ArrayList < ZipEntry > and add ZipEntries instead of names - still nothing. Maybe there is some other way? Strange thing is, that ZipEntry has a .isDirectory() method...

Thanks for help,
Martin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀中猫帐中妖 2024-10-09 18:46:01

来自文档 :

目录项被定义为名称以“/”结尾的目录项。

没有必要将目录存储在 ZIP 文件中 - 它们是可选条目。可以使用路径 foo/bar.txt 存储字节序列,而无需名为 foo 的条目。 Zip 工具可能会让人产生这样的错觉:这些东西存在于存档中,即使它们并不存在。

From the documentation:

A directory entry is defined to be one whose name ends with a '/'.

It is not necessary to store directories in a ZIP file - they are optional entries. It is possible to store a byte sequence with the path foo/bar.txt without an entry called foo. Zip tools may provide the illusion that such things exist within the archive even if they don't.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文