JSON to XML Converter
Both JSON and XML are being used almost every application and converting json to xml is very common requirment. This Json to Xml Converter tool converts JSON to XML document. It provides options to generate both element and attribute based XML. Takes JSON as input and produces XML string.
It does the following things:
- It creates a default 'RootElm' element.
- When 'Attribute Based' XML option is selected, it converts all JSON property values to attribute value.
- when 'Element Based' XML option is selected, it converts all all JSON property values to #text item types
Click Here To Watch A Demo On It
How It Works:
It first validate the input JSON String and analyse it. It extracts the
attributes and values from the JSON String. . Form the XML from
extracted attributes and its values. Parameters are:
- JSON String: Source JSON content.
- Root Element Name: The name of the root element of the target
XML
- Output XML Format: Structure of the output XML. Whether it
will be element based or attribute based.