Convert all json files in this folder to xml files

Convert all json files in this folder to xml files

Small tool: used to convert all json files in this folder into xml files.
Environment: linux environment (if the environment is windows, it will report "decode" error, when opening the file, select the encoding format under windows environment: GBK)
Reference: python:json to xml

Upload code

import os
from json import loads
from dicttoxml import dicttoxml
from xml.dom.minidom import parseString


def jsonToXml(json_path, xml_path):
    #@abstract: transfer json file to xml file
    #json_path: complete path of the json file
    #xml_path: complete path of the xml file
    with open(json_path,'r',encoding='UTF-8')as json_file:
        load_dict=loads(json_file.read())
    #print(load_dict)
    my_item_func = lambda x: 'Annotation'
    xml = dicttoxml(load_dict,custom_root='Annotations',item_func=my_item_func,attr_type=False)
    dom = parseString(xml)
    #print(dom.toprettyxml())
    #print(type(dom.toprettyxml()))
    with open(xml_path,'w',encoding='UTF-8')as xml_file:
        xml_file.write(dom.toprettyxml())
        
def json_to_xml(json_dir, xml_dir):
    #transfer all json file which in the json_dir to xml_dir
    if(os.path.exists(xml_dir)==False):
        os.makedirs(xml_dir)
    dir = os.listdir(json_dir)
    for file in dir:
        file_list=file.split(".")
        if(file_list[-1] == 'json'):
            jsonToXml(os.path.join(json_dir,file),os.path.join(xml_dir,file_list[0]+'.xml'))  

if __name__ == '__main__':
    #transfer json files in current directory
    j_dir = os.getcwd()
    x_dir = os.getcwd()
    json_to_xml(j_dir, x_dir)
  1. os.getcwd() is used to get the current path;
  2. file_list[-1] is used to get the file suffix;
  3. dom.toprettyxml() is used to modify str to a more beautiful format
  4. dicttoxml is used to convert dictionary to xml

Guess you like

Origin blog.csdn.net/u013894391/article/details/103049090