gpt4 book ai didi

java - 无法使用 getResourceAsStream 加载文件

转载 作者:行者123 更新时间:2023-12-01 14:08:29 25 4
gpt4 key购买 nike

我正在尝试学习 Apache Avro,并且我已经从 Avro 的简单教程开始。我正在尝试使用 JSON 架构来加载数据。下面是我的简单示例-

public class AvroExample {

public static Schema SCHEMA; // writer's schema
public static Schema SCHEMA2; // reader's schema

private String name;
private int age;
private String[] mails;
private AvroExample boss;

static {
try {

SCHEMA = Schema.parse(AvroExample.class.getResourceAsStream("Employee.avsc"));
SCHEMA2 = Schema.parse(AvroExample.class.getResourceAsStream("Employee2.avsc"));
} catch (Exception e) {
System.out.println("Couldn't load a schema: " + e.getMessage());
}
}

// some more code

}

但不知何故,这一行总是给我异常(exception) -

SCHEMA = Schema.parse(AvroExample.class.getResourceAsStream("Employee.avsc"));

as- 无法加载架构:java.lang.NullPointerException

我相信不知何故,它无法正确加载文件或者我以错误的方式加载文件。

这是文件内容-

{
"type": "record",
"name": "Employee",
"fields": [
{"name": "name", "type": "string"},
{"name": "age", "type": "int"},
{"name": "emails", "type": {"type": "array", "items": "string"}},
{"name": "boss", "type": ["Employee","null"]}
]
}

下面是我的工作区的图片,显示了我放置这两个 avsc 文件的位置 -

enter image description here

有人可以帮我解决这个问题吗?

最佳答案

根据您向我们展示的项目设置,您的类路径可能如下所示

/root
/Employee.avsc
/Employee2.avsc
/com
/rjamal
/avro
/test
/AvroExperiment
/...

换句话说,这两个 avsc 文件将位于类路径的根目录下。方法调用

AvroExample.class.getResourceAsStream("Employee.avsc")

AvroExample 类所在的包中查找资源。

要使其相对于类路径的根目录,请在路径前加上 / 前缀。

AvroExample.class.getResourceAsStream("/Employee.avsc")

检查javadoc

Before delegation, an absolute resource name is constructed from the given resource name using this algorithm:

  • If the name begins with a '/' ('\u002f'), then the absolute name of the resource is the portion of the name following the '/'.
  • Otherwise, the absolute name is of the following form: modified_package_name/name

    Where the modified_package_name is the package name of this object with '/' substituted for '.' ('\u002e').

强调我的。

关于java - 无法使用 getResourceAsStream 加载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18728518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com