读取文件夹中所有.json后缀的文件,读取json文件中内容
时间: 2023-08-13 19:07:46 浏览: 227
如果你使用的是 Python 编程语言,可以使用以下代码来读取文件夹中所有 `.json` 后缀的文件,并读取 JSON 文件中的内容:
```python
import os
import json
def read_json_files(folder_path):
json_files = [file for file in os.listdir(folder_path) if file.endswith('.json')]
for file_name in json_files:
file_path = os.path.join(folder_path, file_name)
with open(file_path, 'r') as json_file:
data = json.load(json_file)
# 在这里处理读取到的 JSON 数据
print(data) # 示例:打印 JSON 数据
# 替换为你实际的文件夹路径
folder_path = '/path/to/folder'
read_json_files(folder_path)
```
在上述代码中,我们首先使用 `os.listdir` 函数列出指定文件夹中的所有文件,然后使用列表推导式筛选出以 `.json` 结尾的文件。接下来,我们逐个打开这些 JSON 文件,并使用 `json.load` 函数将其内容加载到一个 Python 字典中。你可以在 `# 在这里处理读取到的 JSON 数据` 的位置进行对读取到的 JSON 数据的处理(例如,打印、存储到其他数据结构等)。
请注意将代码中的 `/path/to/folder` 替换为你实际的文件夹路径。
阅读全文