xml文件转换json格式
时间: 2023-08-14 15:14:17 浏览: 112
xml文件转json
你可以使用各种编程语言中的库或工具来将XML文件转换为JSON格式。以下是一个常见的示例,在Python中使用`xmltodict`库进行转换:
```python
import xmltodict
import json
# 读取XML文件并转换为字典
with open('file.xml', 'r') as xml_file:
xml_data = xml_file.read()
data_dict = xmltodict.parse(xml_data)
# 将字典转换为JSON格式
json_data = json.dumps(data_dict, indent=4)
# 将JSON写入文件
with open('file.json', 'w') as json_file:
json_file.write(json_data)
```
请确保安装了`xmltodict`库(可通过`pip install xmltodict`进行安装)。这个示例将XML文件解析为字典,然后使用`json.dumps()`函数将字典转换为JSON格式,并将结果写入一个JSON文件中。
你可以根据自己的需求调整输入输出文件的路径和名称。
阅读全文