Python3 Xml 转为Dict(字典)

本文介绍了一个Python程序,该程序演示了如何使用xmltodict库将XML文件转换为JSON格式,并将JSON数据转换回XML。通过具体代码示例,展示了整个转换过程,包括读取XML文件,解析XML数据,将数据写入JSON文件,以及从字典生成XML。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


import xmltodict
import json

def xml2dict():
    file_object = open('1111111018378_20181203214626.xml',encoding = 'utf-8')                                                                                                            
    try:
        all_the_xmlStr = file_object.read()
    finally:
        file_object.close()
    #xml To dict 
    convertedDict = xmltodict.parse(all_the_xmlStr)
    #ensure_ascii 设置为False 中文可以转换
    jsonStr = json.dumps(convertedDict,ensure_ascii=False)
    print( jsonStr);
    #写入文件 写入为utf-8编码
    with open('./1111111018378_20181203214626.json', 'w',encoding = 'utf-8') as f:
    #除去xmltodict 转换时默认添加的'@' 符号
        f.write(jsonStr.replace('@', ''))


    #2.Json to Xml
    dictVal = {
        'page': {
        'title': 'xxx',
        'ns': 0,
        'revision': {
            'id': 123456,
            }
        }
    }
    convertedXml = xmltodict.unparse(dictVal);
    print ("convertedXml=",convertedXml)
if __name__ == '__main__':
    xml2dict();

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值