解压包含多个文件和文件的 7zip 存档Java 中的目录

发布于 2024-09-13 17:57:06 字数 1468 浏览 10 评论 0原文

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

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

发布评论

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

评论(1

兮颜 2024-09-20 17:57:06

在示例中,将 compressed 替换为 new File("PATH_TO_FILE")。示例代码将产生一个输出流,我想 LzmaOutputStream 或库具有将流转换为二进制或字符串的适当方法。

默认情况下,Lzma 只是一种压缩算法,而不是像 tar 或 zip 那样的文件存档器。 (注意:7-Zip 程序是一个文件存档器,但您链接到的库不支持文件遍历和解包。

我建议使用支持良好的压缩算法,如 Zip 或 gz。如果您必须使用 lzma,您可以使用tar 构建文件存档,然后使用 lzma 对其进行压缩,或者使用零压缩的 zip

这是 java TAR 库

In the example, replace compressed with new File("PATH_TO_FILE"). The example code will yield an output stream, I suppose the LzmaOutputStream or the library has appropriate methods for converting the stream to binary or string.

By default Lzma is only a compression algorithm, not a file archiver like tar or zip. (Note: The 7-Zip program is a file archiver, but the library you linked to does not support file traversal and unpacking.

I would suggest using a well-supporter compression algorithm like Zip or gz. If you must use lzma you could use tar to build a file archive and then compress it with lzma. Or use zip with zero compression.

Here is a java TAR library.

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