java - 临时用 zip4j 解压文件。 (提取用于读取但在缓存文件中不可见)

标签 java eclipse desktop

我正在使用 zip4j 以及打包和提取工作,但我很好奇如何只提取文件而不将文件放入缓存中。

这是我在另一个线程上找到的一些代码:

public static void main() {
    String source = "C:\\Users\\gamecaching\\Cache.zip";
    String destination = "C:\\Users\\gamecaching\\";
    String password = "mypassword";

    try {
        ZipFile zipFile = new ZipFile(source);
        if (zipFile.isEncrypted()) {
            zipFile.setPassword(password);
        }
        zipFile.extractAll(destination);
    } catch (ZipException e) {
        e.printStackTrace();
    }
}

如何让它仅在程序运行时提取(&& 提取的文件在目录中不可见)并在程序退出后删除。

最佳答案

创建 ZipFile 之后

ZipFile zipFile = new ZipFile(source);

您可以像这样遍历 zip 文件中的每个文件:

ArrayList fileHeaderList = zipFile.getFileHeaders();

对于每个 ZipFile:

for (int i = 0; i < fileHeaderList.size(); i++) {
    FileHeader fileHeader = (FileHeader)fileHeaderList.get(i);

然后,你可以通过这样做得到inputStream

is = zipFile.getInputStream(fileHeader);

现在您有了要读取的 InputStream。

下面是一个使用 Streams 的综合示例(摘自 Zip4j examples package。)虽然这个示例仍然写入文件,但它演示了 zip 文件中流的使用。我建议查看示例包中的更多示例。

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;

import net.lingala.zip4j.core.ZipFile;
import net.lingala.zip4j.exception.ZipException;
import net.lingala.zip4j.io.ZipInputStream;
import net.lingala.zip4j.model.FileHeader;
import net.lingala.zip4j.unzip.UnzipUtil;

/**
 * Example demonstrating the use of InputStreams to extract files from the
 * ZipFile
 */
public class ExtractAllFilesWithInputStreams {

    private final int BUFF_SIZE = 4096;

    public ExtractAllFilesWithInputStreams() {
        ZipInputStream is = null;
        OutputStream os = null;
        try {
            // Initiate the ZipFile
            ZipFile zipFile = new ZipFile(
                "C:\\ZipTest\\ExtractAllFilesWithInputStreams.zip");
            String destinationPath = "c:\\ZipTest";
            // If zip file is password protected then set the password
            if (zipFile.isEncrypted()) {
                zipFile.setPassword("password");
            }
            // Get a list of FileHeader. FileHeader is the header information
            // for all the files in the ZipFile
            List fileHeaderList = zipFile.getFileHeaders();
            // Loop through all the fileHeaders
            for (int i = 0; i < fileHeaderList.size(); i++) {
                FileHeader fileHeader = (FileHeader) fileHeaderList.get(i);
                if (fileHeader != null) {
                    // Build the output file
                    String outFilePath = destinationPath
                        + System.getProperty("file.separator")
                        + fileHeader.getFileName();
                    File outFile = new File(outFilePath);
                    // Checks if the file is a directory
                    if (fileHeader.isDirectory()) {
                        // This functionality is up to your requirements
                        // For now I create the directory
                        outFile.mkdirs();
                        continue;
                    }
                    // Check if the directories(including parent directories)
                    // in the output file path exists
                    File parentDir = outFile.getParentFile();
                    if (!parentDir.exists()) {
                        parentDir.mkdirs();
                    }
                    // Get the InputStream from the ZipFile
                    is = zipFile.getInputStream(fileHeader);
                    // Initialize the output stream
                    os = new FileOutputStream(outFile);
                    int readLen = -1;
                    byte[] buff = new byte[BUFF_SIZE];
                    // Loop until End of File and write the contents to the
                    // output stream
                    while ((readLen = is.read(buff)) != -1) {
                        os.write(buff, 0, readLen);
                    }
                    // Please have a look into this method for some important
                    // comments
                    closeFileHandlers(is, os);
                    // To restore File attributes (ex: last modified file time,
                    // read only flag, etc) of the extracted file, a utility
                    // class can be used as shown below
                    UnzipUtil.applyFileAttributes(fileHeader, outFile);
                    System.out.println("Done extracting: "
                        + fileHeader.getFileName());
                } else {
                    System.err.println("fileheader is null. Shouldn't be here");
                }
            }
        } catch (ZipException e) {
            e.printStackTrace();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                closeFileHandlers(is, os);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    private void closeFileHandlers(ZipInputStream is, OutputStream os)
            throws IOException {
        // Close output stream
        if (os != null) {
            os.close();
            os = null;
        }
        // Closing inputstream also checks for CRC of the the just extracted
        // file. If CRC check has to be skipped (for ex: to cancel the unzip
        // operation, etc) use method is.close(boolean skipCRCCheck) and set the
        // flag, skipCRCCheck to false
        // NOTE: It is recommended to close outputStream first because Zip4j
        // throws an exception if CRC check fails
        if (is != null) {
            is.close();
            is = null;
        }
    }

    public static void main(String[] args) {
        new ExtractAllFilesWithInputStreams();
    }
}

关于java - 临时用 zip4j 解压文件。 (提取用于读取但在缓存文件中不可见),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18974389/

相关文章:

java - 如何从路径生成 Guava ByteSource?

java - Weblogic 12c 与 Eclipse Luna RC3

java - 模拟器不显示任何内容

java - 如何使用带有 Java Stream 实现 Stax 的 xpath 在 XML 中查找元素

一段时间后使用 ProcessBuilder 启动的 Java 应用程序被阻止

java - 在eclipse中打开java项目

python - 查找 Mac OSX 上当前聚焦的应用程序窗口

macos - flutter 桌面 : Cannot find device on MacOS Catalina

desktop - 最好的开发机快捷方式管理工具?

java - Java中的ArrayList和多线程