解压缩 BZIP2 存档
我可以解压缩 zip、gzip 和 rar 文件,但我还需要解压缩 bzip2 文件以及解压缩它们 (.tar)。我还没有遇到一个好的库可以使用。
我将 Java 与 Maven 一起使用,非常理想,我想将其作为依赖项包含在 POM 中。
你推荐哪些图书馆?
I can uncompress zip, gzip, and rar files, but I also need to uncompress bzip2 files as well as unarchive them (.tar). I haven't come across a good library to use.
I am using Java along with Maven so ideally, I'd like to include it as a dependency in the POM.
What libraries do you recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能看到的最好的选择是 Apache Commons Compress 与此 Maven 依赖项。
来自 示例:
The best option I can see is Apache Commons Compress with this Maven dependency.
From the examples:
请不要忘记使用缓冲流来获得3倍的加速!
使用
build.gradle.kts
:Please don't forget to use buffered streams to gain up to 3x speedup!
With
build.gradle.kts
: