把Excel表格转成json格式文件,并且换行
时间: 2024-01-18 11:02:56 浏览: 195
您可以使用Python的pandas库来实现这个功能。以下是一个简单的示例代码:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('example.xlsx')
# 将DataFrame转换为JSON格式,并加入换行符
json_str = df.to_json(orient='records', lines=True)
# 将JSON字符串写入文件
with open('example.json', 'w') as f:
f.write(json_str)
```
其中,`orient='records'`表示将每一行转换为一个JSON对象,`lines=True`表示每行JSON对象之间加一个换行符。您可以根据需要进行调整。
阅读全文