javaweb读取配置文件
时间: 2023-10-31 11:06:06 浏览: 117
JavaWeb读取配置文件的四种方法
可以使用Java中的Properties类来读取配置文件。具体步骤如下:
1. 创建Properties对象
```java
Properties props = new Properties();
```
2. 加载配置文件
```java
InputStream in = this.getClass().getClassLoader().getResourceAsStream("config.properties");
props.load(in);
```
3. 读取配置项
```java
String value = props.getProperty("key");
```
其中,"config.properties"是配置文件的名称,"key"是配置项的名称。
阅读全文