我在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
。
FileSystem
?答案 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”。