用Java打开debian包
Java 中是否有用于解压 .deb (debian) 存档的库?不幸的是我还没有找到任何有用的东西。谢谢。
Are there any libraries in Java for unpacking a .deb (debian) archive? Unfortunately I Couldn't find anything useful out there yet. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您所说的解压是指解压文件,那么使用 Apache Commons Compress 应该可以实现。 .deb 文件是“作为 ar 存档实现”和 Commons 压缩能够解压缩 ar 档案。
If you by unpacking mean extracting the files, it should be possible with Apache Commons Compress. A .deb file is "implemented as an ar archive" and Commons Compress is able to uncompress ar archives.
好的,正如建议的那样,我使用了 apache commons compress,这是一个可以解决问题的方法。从maven仓库下载它: http://mvnrepository.com/artifact/ org.apache.commons/commons-compress/1.2。
Ok, so as suggested I've used apache commons compress and here's a method that does the trick. Downladed it from the maven repo: http://mvnrepository.com/artifact/org.apache.commons/commons-compress/1.2.