- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试学习 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 文件的位置 -
有人可以帮我解决这个问题吗?
最佳答案
根据您向我们展示的项目设置,您的类路径可能如下所示
/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/
我是一名优秀的程序员,十分优秀!