java - 如何解压一个zip文件的特定目录下的所有文件?

java - How to unzip all the files in a specific directory of a zip file?

假设我有一个名为 Bundles.zip 的 .zip 文件,直接在 Bundles.zip 中,有一个几个文件和几个文件夹。这是 .zip 的样子:

现在,我想从 Bundles 文件夹中提取 EVERYTHING。我的程序已经知道需要从中提取文件的文件夹的名称,在本例中为 Bundles

zip里面的Bundles文件夹可以有文件,子文件夹,子文件夹里的文件,基本上什么都有,像这样:

我只需要将 Bundles 文件夹中的所有内容提取到输出目录。

如何在 Java 中完成此操作?我找到了解压缩 zip 中所有文件和文件夹的答案,但我只需要解压缩 zip 中的特定文件夹,而不是所有内容。

到目前为止的工作代码:

            ZipFile zipFile = new ZipFile(mapsDirectory + "mapUpload.tmp");
            Enumeration zipEntries = zipFile.entries();
            String fname;
            String folderToExtract = "";
            String originalFileNameNoExtension = originalFileName.replace(".zip", "");

            while (zipEntries.hasMoreElements()) {
                ZipEntry ze = ((ZipEntry)zipEntries.nextElement());

                fname = ze.getName();

                if (ze.isDirectory()) //if it is a folder
                {

                    if(originalFileNameNoExtension.contains(fname)) //if this is the folder that I am searching for
                    {
                        folderToExtract = fname; //the name of the folder to extract all the files from is now fname
                        break;
                    }
                }
            }

            if(folderToExtract == "")
            {
                printError(out, "Badly packaged Unturned map error:  " + e.getMessage());
                return;
            }


            //now, how do i extract everything from the folder named folderToExtract?

对于到目前为止的代码,originalFileName 类似于 "The Island.zip"。在 zip 中有一个名为 The Island 的文件夹。我需要在 zip 文件中找到与 zip 文件名称匹配的文件夹,然后提取其中的所有内容。

文件的路径(文件夹)是 "zipEntry.getName()" returns 的一部分,并且应该让您获得所需的信息,只要知道文件是否在您查找的文件夹中。

我会做类似的事情:

while (zipEntries.hasMoreElements()) {
  //fname should have the full path
  if (ze.getName().startsWith(fname) && !ze.isDirectory())
    //it is a file within the dir, and it isn't a dir itself
    ...extract files...
  }
}

ZipFile 有一个 getInputStream 方法来获取给定 ZipEntry 的输入流,因此,类似这样:

InputStream instream = zipFile.getInputStream(ze);

然后从流中读取字节并将它们写入文件。

如果您需要您的代码深入到子目录的 1+ 级,您可以这样做。显然这不会编译,但你明白了。该方法调用自身,并 returns 调用自身,从而可以根据需要深入到子文件夹中。

private void extractFiles(String folder) {
  //get the files for a given folder
  files = codeThatGetsFilesAndDirs(folder);

  for(file in files) {
    if(file.isDirectory()) {
      extractFiles(file.getName()); 
    } else {
      //code to extract the file and writes it to disk.
    }
  } 
}

一种更简单的方法是使用 Java 的 NIO API 7。我刚刚为我的一个项目这样做了:

private void extractSubDir(URI zipFileUri, Path targetDir)
        throws IOException {

    FileSystem zipFs = FileSystems.newFileSystem(zipFileUri, new HashMap<>());
    Path pathInZip = zipFs.getPath("path", "inside", "zip");
    Files.walkFileTree(pathInZip, new SimpleFileVisitor<Path>() {
        @Override
        public FileVisitResult visitFile(Path filePath, BasicFileAttributes attrs) throws IOException {
            // Make sure that we conserve the hierachy of files and folders inside the zip
            Path relativePathInZip = pathInZip.relativize(filePath);
            Path targetPath = targetDir.resolve(relativePathInZip.toString());
            Files.createDirectories(targetPath.getParent());

            // And extract the file
            Files.copy(filePath, targetPath);

            return FileVisitResult.CONTINUE;
        }
    });
}

瞧瞧。比使用 ZipFileZipEntry 干净得多,它还有一个额外的好处,即可以重复使用从任何类型的文件系统复制文件夹结构,而不仅仅是 zip 文件。