在内存中解析 zip 内的 XML

发布于 2024-10-23 12:15:58 字数 215 浏览 3 评论 0原文

我有一个包含两个文件的 Zip 文件:一个 XML 和一个缩略图。我想打开 XML 文件并解析它,而无需将其提取到磁盘上。

DocumentBuilder 的解析方法之一需要一个InputStream。有没有办法获取压缩文件中XML的InputStream?我有点迷路了。我很确定 ZipInputStream 或 ZipFile 可以提供一些东西,但我无法弄清楚:/

提前谢谢您!

I have a Zip that contains two files: an XML and a thumbnail. I would like to open the XML file and parse it WITHOUT having to extract on disk.

One of DocumentBuilder's parse method requires an InputStream. Is there a way to get the InputStream of the XML in the Zipped file? I kinda got lost. I'm pretty sure ZipInputStream or ZipFile has something to offer, but I can't figure it out :/

Thank you in advance!

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

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

发布评论

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

评论(2

叹沉浮 2024-10-30 12:15:59

中有一些输入流类java.util.zip,不确定它们是否有帮助,但看起来很有希望,特别是 ZipInputStream

There are some input stream classes in java.util.zip, not sure if they help, but it looks promising, especially ZipInputStream.

江挽川 2024-10-30 12:15:58

我相信您正在寻找这样的东西:

FileInputStream fin = new FileInputStream("your.zip");
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
    if (ze.getName().equals("your.xml")) {
        // pass zin to DocumentBuilder
    }
}

I believe you're looking for something like this:

FileInputStream fin = new FileInputStream("your.zip");
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
    if (ze.getName().equals("your.xml")) {
        // pass zin to DocumentBuilder
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文