如何使用Java中的truezip从tar中的jar列表文件()?

时间:2011-03-22 19:44:25

标签: java jar tar truezip

我试图列出tar中的所有文件,包括jar中的文件。

如何在Java或其他api中使用truezip来实现这一目标?

由于

2 个答案:

答案 0 :(得分:5)

使用TrueZIP 7,您可以使用以下内容:

public static void main(String args[]) throws IOException {
    // Remember to set to add the following dependencies to the class path:
    // Compile time artifactId(s): truezip-file
    // Run time artifactId(s): truezip-kernel, truezip-driver-file, truezip-driver-tar, truezip-driver-zip
    TFile.setDefaultArchiveDetector(new TDefaultArchiveDetector("tar|zip"));
    search(new TFile(args[0])); // e.g. "my.tar" or "my.zip"
    TFile.umount(); // commit changes
}

private void search(TFile entry) throws IOException {
    if (entry.isDirectory()) {
        for (TFile member : dir.listFiles())
            search(member);
    } else if (entry.isFile()) {
        // [do something with entry]
    } // else is special file or non-existent
}

答案 1 :(得分:0)

在stackoverflow中找到类似的线程 How do I extract a tar file in Java?

希望以上链接有所帮助。

这将列出jar中的文件。 您可以使用JarFile和JarEntry的组合来获取列表。

JarFile randomJar = new JarFile("randomname.jar");
Enumeration enumEntries = randomJar.entries();
while (enumEntries.hasMoreElements()) {
    JarEntry jarEntry = (JarEntry)enumEntries.nextElement();
    String name = jarEntry.getName();
    System.out.println("Name = " + name );
}

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