python 读取 本地 properties 配置项
时间: 2023-08-18 20:08:55 浏览: 92
Python实现读取Properties配置文件的方法
在Python中可以使用`configparser`模块来读取本地的properties配置文件。以下是一个简单的示例代码:
```python
import configparser
config = configparser.ConfigParser()
config.read('config.properties') # 读取配置文件
# 获取配置项的值
username = config.get('database', 'username')
password = config.get('database', 'password')
print(username, password)
```
在上面的代码中,`configparser`模块首先被导入,然后创建一个`ConfigParser`对象,使用`read`方法读取本地的properties配置文件。接下来,使用`get`方法获取配置项的值,并将其赋值给变量,最后将变量打印出来。需要注意的是,在读取配置文件时,需要使用配置文件的文件名作为参数传递给`read`方法。同时,配置文件中的配置项需要按照一定的格式书写,例如:
```
[database]
username = root
password = 123456
```
阅读全文