0% found this document useful (0 votes)
22 views1 page

Json To XML Convert

Uploaded by

Hackey
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

Json To XML Convert

Uploaded by

Hackey
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

JSON DATA

{
"menu": {
"id": "file",
"value":"File",
"popup": {
"menuitem":[
{"value":"New","onclick":"CreateNewDoc()"},
{"value":"Open","onclick":"openDoc()"},
{"value":"Close","onclick":"CloseDoc()"}
]
}
}}
Its Equivalence XML format

<?xml version="1.0" encoding="UTF-8" ?>


<menu>
<id>file</id>
<value>File</value>
<popup>
<menuitem>
<value>New</value>
<onclick>CreateNewDoc()</onclick>
</menuitem>
<menuitem>
<value>Open</value>
<onclick>openDoc()</onclick>
</menuitem>
<menuitem>
<value>Close</value>
<onclick>CloseDoc()</onclick>
</menuitem>
</popup>
</menu>

You might also like