gzip 格式流式传输
想知道这里是否有人对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确实意识到可以使用标准 Java 库类流吗?这非常简单,就像:
整个文件不会在磁盘上解压缩,只是在内存中解压缩您需要的块。您可以选择使用相应的输出流重新压缩并再次写回。
You do realise that you can stream using standard java library classes right? It's quite trivial, something like:
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.