java 非springboot 管理时读取配置文件属性代码
时间: 2023-11-27 11:04:37 浏览: 90
在非 Spring Boot 管理的情况下,可以使用 Java 的 Properties 类来读取配置文件属性。
示例代码:
```java
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
private Properties properties;
public ConfigReader(String filePath) throws IOException {
properties = new Properties();
FileInputStream input = new FileInputStream(filePath);
properties.load(input);
input.close();
}
public String getProperty(String key) {
return properties.getProperty(key);
}
}
```
使用方法:
```java
try {
ConfigReader configReader = new ConfigReader("config.properties");
String username = configReader.getProperty("username");
String password = configReader.getProperty("password");
// Use the properties...
} catch (IOException e) {
// Handle the exception...
}
```
以上代码假设配置文件名为 `config.properties`,包含以下内容:
```
username=admin
password=secret
```
可以根据需要自行修改代码。
阅读全文