一般使用:
Properties properties = new Properties();
InputStream inputStream = this.getClass()..getClassLoader().getResourceAsStream("reflect/example/factory.properties");
properties.load(inputStream);
properties.get("key");
同一文件夹下面:
InputStream in = getClass().getResourceAsStream("资源Name");
不同的包中:
InputStream ins = this.getClass().getResourceAsStream("/cn/zhao/properties/testPropertiesPath2.properties");
出现问题:
在static静态方法块中无法使用getClass()去读取
原因:
JAVA无法从静态上下文中引用非静态 变量 this
this是不能在static(静态)方法或者static块中使用的
原因是static类型的方法或者代码块是属于类本身的,
不属于某个对象,而this本身就代表当前对象,而静态方法或者块调用的时候是不用初始化对象的
解决方法
- 使用 Object.class.getResourceAsStream(“xxx”);
- 使用 当前类名.class.getResourceAsStream(“xxx”);