Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

walkFileThree inside JAR-file

Tags:

java

jar

unzip

nio

I'm having trouble to get the root-path inside a JAR-file. I'm writing a method for extracting the content of a Jar/Zip-file to a target directory using Java NIO walkFileThree. The method currently looks like this:

public static void unzip(Path filePath, Path destination) throws IOException {
Map<String, String> zipProperties = new HashMap<>();
/* We want to read an existing ZIP File, so we set this to False */
zipProperties.put("create", "false");
zipProperties.put("encoding", "UTF-8");
URI zipFile = URI.create("jar:file:" + filePath.toUri().getPath());

try (FileSystem zipfs = FileSystems.newFileSystem(zipFile, zipProperties)) {
  Path rootPath = zipfs.getPath("/");
  Files.walkFileTree(rootPath, new SimpleFileVisitor<Path>() {

    @Override
    public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {

      Path targetPath = destination.resolve(rootPath.relativize(dir));
      if (!Files.exists(targetPath)) {
        Files.createDirectory(targetPath);
      }
      return FileVisitResult.CONTINUE;
    }

    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {

      Files.copy(file, destination.resolve(rootPath.relativize(file)), StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING);
      return FileVisitResult.CONTINUE;
    }
  });
}
}

But I get a exception:

java.nio.file.ProviderMismatchException
at sun.nio.fs.UnixPath.toUnixPath(UnixPath.java:200) ~[?:1.8.0_45]
at sun.nio.fs.UnixPath.resolve(UnixPath.java:397) ~[?:1.8.0_45]
at sun.nio.fs.UnixPath.resolve(UnixPath.java:43) ~[?:1.8.0_45]

What is the proper way to get the root-path(/) of the zip file so that I could recursively copy all the content to the destination folder?

Thanks!

like image 629
Henrik Östman Avatar asked Oct 19 '22 06:10

Henrik Östman


1 Answers

Got it working, just added a toString() after relativize() as suggested here: FileSystemNotFoundException

Now the working code looks like this:

public static void unzip(Path filePath, Path destination) throws IOException {
  //Path filePath = Paths.get( zipFilePath );
  Map<String, String> zipProperties = new HashMap<>();
 /* We want to read an existing ZIP File, so we set this to False */
 zipProperties.put("create", "false");
 zipProperties.put("encoding", "UTF-8");
 URI zipFile = URI.create("jar:file:" + filePath.toUri().getPath());

  try (FileSystem zipfs = FileSystems.newFileSystem(zipFile, zipProperties)) {
  Path rootPath = zipfs.getPath("/");
  Files.walkFileTree(rootPath, new SimpleFileVisitor<Path>() {

    @Override
    public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {

      Path targetPath = destination.resolve(rootPath.relativize(dir).toString());
      if (!Files.exists(targetPath)) {
        Files.createDirectory(targetPath);
      }
      return FileVisitResult.CONTINUE;
    }

    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {

      Files.copy(file, destination.resolve(rootPath.relativize(file).toString()), StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING);
      return FileVisitResult.CONTINUE;
    }
  });
 }
}
like image 162
Henrik Östman Avatar answered Oct 29 '22 15:10

Henrik Östman