gzip 格式流式传输

发布于 2025-01-02 08:26:47 字数 126 浏览 0 评论 0原文

想知道这里是否有人对 gzip 格式有一些经验。我有一个非常大的 gzip 文件需要解析。但是,我可能只需要解压缩的文本文件的一小部分。是否可以在不解压整个文件的情况下流式传输此 zip 文件?

有人使用过 gzip 吗?

Wondering if there's someone here with some experience with gzip format. I have a very large gzip file that I need to parse. However, I may only need a small portion of the decompressed text file. Is is possible to stream this zip file without decompressing the entire file?

Anyone experience with gzip?

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

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

发布评论

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

评论(1

宫墨修音 2025-01-09 08:26:47

您确实意识到可以使用标准 Java 库类吗?这非常简单,就像:

GZIPInputStream stream = new GZIPInputStream(new FileInputStream("some_file.gz"));
BufferedReader reader = new BufferedReader(stream);

// Now read line by line... till you hit the content you want.

整个文件不会在磁盘上解压缩,只是在内存中解压缩您需要的块。您可以选择使用相应的输出流重新压缩并再次写回。

You do realise that you can stream using standard java library classes right? It's quite trivial, something like:

GZIPInputStream stream = new GZIPInputStream(new FileInputStream("some_file.gz"));
BufferedReader reader = new BufferedReader(stream);

// Now read line by line... till you hit the content you want.

The entire file is not decompressed on the disk, just chunks as you need it in memory. And you can optionally re-compress and write back out again using the corresponding output streams.

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