如何在 Java 中使用 truezip 从 tar 中的 jar 中列出文件()?
我试图列出 tar 中的所有文件,包括 jar 中的文件。
如何在 Java 或其他 api 中使用 truezip 来做到这一点?
谢谢
I am trying to list all files in a tar, including files in jar.
How can I do this by using truezip in Java or other api?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 stackoverflow 中找到了类似的线程
如何在 Java 中提取 tar 文件?
希望上面的链接有帮助。
这将列出 jar 中的文件。
您可以使用 JarFile 和 JarEntry 的组合来获取列表。
http://download.oracle。 com/javase/1.4.2/docs/api/java/util/jar/JarFile.html
http://download.oracle。 com/javase/1.4.2/docs/api/java/util/zip/ZipEntry.html
Found a similar thread here in stackoverflow
How do I extract a tar file in Java?
Hope the above link helps.
This will list files in a jar.
You can use a combination of JarFile and JarEntry to get the list.
http://download.oracle.com/javase/1.4.2/docs/api/java/util/jar/JarFile.html
http://download.oracle.com/javase/1.4.2/docs/api/java/util/zip/ZipEntry.html
使用 TrueZIP 7,您可以使用如下内容:
Using TrueZIP 7, you could use something like this: