JAVA读取resource目录下的Properties设定文件
时间: 2023-12-21 08:06:51 浏览: 62
java读取properties配置文件
5星 · 资源好评率100%
在JAVA中,可以使用以下代码来读取resource目录下的Properties设定文件:
```java
Properties props = new Properties();
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("config.properties");
props.load(inputStream);
```
其中,`config.properties`是设定文件的名称,它位于resource目录下。上述代码将设定文件读取到`props`对象中,可以通过以下方式获取其中的属性值:
```java
String value = props.getProperty("key");
```
其中,`key`是设定文件中的属性名称。如果设定文件中不存在该属性,则返回`null`。
阅读全文