java.nio.file.FileSystemNotFoundException 从 resources folder 获取文件时的异常

2022-09-04 05:43:56

我在以下代码上收到此错误(请注意,这不会在我的本地计算机上发生,只会在我的构建服务器上发生):

Files.readAllBytes(Paths.get(getClass().getResource("/elasticsearch/segmentsIndex.json").toURI()), Charset.defaultCharset());

例外:

Caused by: java.nio.file.FileSystemNotFoundException: null
at com.sun.nio.zipfs.ZipFileSystemProvider.getFileSystem(ZipFileSystemProvider.java:171)
at com.sun.nio.zipfs.ZipFileSystemProvider.getPath(ZipFileSystemProvider.java:157)
at java.nio.file.Paths.get(Paths.java:143)

我试图通过遵循此解决方案来修复它;我的代码现在看起来像这样:

URI segmentsIndexURI = getClass().getResource("/elasticsearch/segmentsIndex.json").toURI();
Map<String, String> env = new HashMap<>(); 
env.put("create", "true");
FileSystem zipfs = FileSystems.newFileSystem(segmentsIndexURI, env); //exception here
Path segmentsIndexPath = Paths.get(segmentsIndexURI);

我遇到以下异常:

java.lang.IllegalArgumentException: Path component should be '/'
at sun.nio.fs.UnixFileSystemProvider.checkUri(UnixFileSystemProvider.java:77)
at sun.nio.fs.UnixFileSystemProvider.newFileSystem(UnixFileSystemProvider.java:86)
at java.nio.file.FileSystems.newFileSystem(FileSystems.java:326)
at java.nio.file.FileSystems.newFileSystem(FileSystems.java:276)

似乎什么都行不通。我应该如何构建文件的路径?


答案 1

不要尝试访问文件等资源。只需获取输入流并从那里读取数据:

byte[] data;
try (InputStream in = getClass().getResourceAsStream("/elasticsearch/segmentsIndex.json")) {
    data = in.readAllBytes​(); // usable in Java 9+
    // data = IOUtils.toByteArray(in); // uses Apache commons IO library
}

此示例使用 Apache commons-io 库中的 IOUtils 类。

如果您的目标是 Java 9+,则可以使用 .data = in.readAllBytes​();


答案 2

通常,假设每个资源都是一个文件是不正确的。相反,您应该获取该资源的 URL/InputStream,并从中读取字节。番石榴可以帮助:

URL url = getClass().getResource("/elasticsearch/segmentsIndex.json");
String content = Resources.toString(url, charset);


另一个可能的解决方案,使用InputStream和apache commons:将InputStream转换为Java中的字节数组

从 byte[] 开始,只需使用 String 构造函数即可获取字符串形式的内容。


推荐