写出读取配置文件,获取配置信息的关键代码
时间: 2024-03-02 13:51:03 浏览: 72
下面是使用Java语言读取配置文件,获取配置信息的关键代码:
```java
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
private static final String CONFIG_FILE = "database.properties";
public static void main(String[] args) {
Properties props = new Properties();
try (FileInputStream in = new FileInputStream(CONFIG_FILE)) {
props.load(in);
} catch (IOException e) {
e.printStackTrace();
}
String driver = props.getProperty("driver");
String url = props.getProperty("url");
String username = props.getProperty("username");
String password = props.getProperty("password");
// 使用获取到的配置信息进行数据库连接等操作
}
}
```
上述代码中,`Properties`类用于读取配置文件中的键值对,`FileInputStream`类用于读取文件流。在读取配置文件后,可以通过`getProperty`方法获取指定键的值,从而获取到配置信息。
阅读全文