def merge_json_folder(folder_path, output_file): json_files = [f for f in os.listdir(folder_path) if f.endswith('.json')] # 获取文件夹中的所有 JSON 文件路径 merged_data = [] # 创建一个空列表,用于存储合并后的 JSON 数据 for file in json_files: file_path = os.path.join(folder_path, file) # 构建完整的文件路径 with open(file_path, 'r') as json_file: data = json.load(json_file) # 读取 JSON 文件并解析为 Python 对象 merged_data.append(data) # 将解析后的 JSON 数据添加到列表中 # 将合并后的数据转换为 JSON 字符串 merged_json = json.dumps(merged_data, indent=4) # 将合并后的 JSON 字符串写入目标文件 with open(output_file, 'w') as output: output.write(merged_json) print("JSON 文件合并完成!") # 使用示例 folder_path = "json_folder" # 存放 JSON 文件的文件夹路径 output_file = "merged.json" # 合并后的 JSON 文件路径 merge_json_folder(folder_path, output_file)

2.合并完成后保留原格式

import os
import json
def merge_json_folder(folder_path, output_file):
    json_files = [f for f in os.listdir(folder_path) if f.endswith('.json')]  # 获取文件夹中的所有 JSON 文件路径
    merged_data = []  # 创建一个空列表,用于存储合并后的 JSON 数据
    for file in json_files:
        file_path = os.path.join(folder_path, file)  # 构建完整的文件路径
        with open(file_path, 'r') as json_file:
            data = json_file.read()  # 读取 JSON 文件内容
            merged_data.append(data)  # 将 JSON 数据添加到列表中
    # 将列表中的 JSON 数据写入目标文件
    with open(output_file, 'w') as output:
        output.write('\n'.join(merged_data))
    print("JSON 文件合并完成!")
# 使用示例
folder_path = "json_folder"  # 存放 JSON 文件的文件夹路径
output_file = "merged.json"  # 合并后的 JSON 文件路径
merge_json_folder(folder_path, output_file)

版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:[email protected]进行投诉反馈,一经查实,立即删除!

上一篇: Python 简易图形界面库easygui 对话框大全
下一篇: Django国际化与本地化指南

  • 解密 Python 的 staticmethod 函数:静态方法的全面解析!
  • Python第三方GDAL库安装(离线库下载资源)
  • 华为OD机试D卷 --符号运算--24年OD统一考试(Java & JS & Python & C & C++)
  • Python酷库之旅-第三方库Pandas(023)
  • 如何借助宝塔界面部署flask框架以及机器学习的算法到服务器(linux命令行+图形化结合),其他基于python的框架如django等也可参考
  • 【已解决】Python解决TypeError: __init__() missing 1 required positional argument: ‘comment‘报错
  • 全网最适合入门的面向对象编程教程:21 类和对象的 Python 实现-多文件的组织:模块 module 和包 package
  • Python小白菜鸟从入门到精通
  • Python中的注释_python注释
  • 华为OD机试D卷 --污染水域--24年OD统一考试(Java & JS & Python & C & C++)
  • 版本匹配指南:Numpy版本和Python版本的对应关系
  • 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
  • Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
  • 在Java中使用XxlCrawler时防止被反爬的几种方式
  • 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
  • PyPy JIT编译器背后的奥秘(揭开PyPy高性能Python的编译优化技术)
  • Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj
  • Python分析程序性能指南 - 3种内存和CPU诊断方法助你优化代码(掌握Python内存和CPU分析技巧)
  •