JAVA ZipFile条目()方法看不到目录
我正在研究数字文档和数字签名,并且偶然发现了一个问题。
输入: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自文档 :
没有必要将目录存储在 ZIP 文件中 - 它们是可选条目。可以使用路径
foo/bar.txt
存储字节序列,而无需名为foo
的条目。 Zip 工具可能会让人产生这样的错觉:这些东西存在于存档中,即使它们并不存在。From the documentation:
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 calledfoo
. Zip tools may provide the illusion that such things exist within the archive even if they don't.