实时写入和读取JSON文件
时间: 2023-10-08 08:07:50 浏览: 132
android开发之Json文件的读写的示例代码
您可以使用Python的内置`json`模块来实现实时写入和读取JSON文件。下面是一个示例代码:
```python
import json
# 读取JSON文件
def read_json(file_path):
with open(file_path, 'r') as file:
data = json.load(file)
return data
# 写入JSON文件
def write_json(data, file_path):
with open(file_path, 'w') as file:
json.dump(data, file)
# 示例数据
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
# 写入JSON文件
write_json(data, 'data.json')
# 读取JSON文件
loaded_data = read_json('data.json')
print(loaded_data)
```
在上面的示例代码中,`write_json`函数将数据写入到指定的JSON文件中,而`read_json`函数从JSON文件中读取数据并返回。您可以根据自己的需求修改示例代码中的数据和文件路径。
阅读全文