在为我的zip创建FileSystem时找不到提供程序?

时间:2017-06-09 13:31:51

标签: java nio jimfs

我在JimFS FileSystem实例上创建了一个Zip文件。我现在想要使用Java FileSystem API阅读Zip。

以下是我创建FileSystem

的方法
final FileSystem zipFs = FileSystems.newFileSystem(
    source, // source is a Path tied to my JimFS FileSystem
    null);

但是,这会引发错误:

  

java.nio.file.ProviderNotFoundException:找不到提供者

有趣的是,代码使用默认的FileSystem

  • 这个错误是什么意思?
  • 我应该如何创建我的Zip FileSystem

3 个答案:

答案 0 :(得分:1)

在 JDK 12 之前,通过该特定构造函数 (Path, ClassLoader) 不支持此功能

此问题已在 JDK12 中修复,提交 196c20c0d14d99cc08fae64a74c802b061231a41

有问题的代码位于 JDK 11 及更早版本的 ZipFileSystemProvider 中:

        if (path.getFileSystem() != FileSystems.getDefault()) {
            throw new UnsupportedOperationException();
        }

答案 1 :(得分:0)

这很有效,但看起来很黑,而且至关重要的是,我不确定为什么它有效。

public static FileSystem fileSystemForZip(final Path pathToZip) {
    Objects.requireNotNull(pathToZip, "pathToZip is null");
    try {
        return FileSystems.getFileSystem(pathToZipFile.toUri());
    } catch (Exception e) {
        try {
            return FileSystems.getFileSystem(URI.create("jar:" + pathToZipFile.toUri()));
        } catch (Exception e2) {
            return FileSystems.newFileSystem(
                URI.create("jar:" + pathToZipFile.toUri()), 
                new HashMap<>());
        }
    }
}

答案 2 :(得分:0)

检查 https://example.com/ SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 路径是否指向 zip 存档文件。

在我的例子中,它指向一个普通的文本文件,它的扩展名甚至不是“.zip”。