编写 Python 脚本:
创建一个 Python 脚本,例如 excel_to_json.py
,内容如下:
import pandas as pd def excel_to_json(excel_file, sheet_name, json_file): # 读取 Excel 文件 df = pd.read_excel(excel_file, sheet_name=sheet_name) # 将 DataFrame 转换为 JSON df.to_json(json_file, orient='records', force_ascii=False) # 示例用法 excel_to_json('input.xlsx', 'Sheet1', 'output.json')