XML与JSON的转换

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

XML与JSON的转换

using System; using System.Xml; using Newtonsoft.Json; using Newtonsoft.Json.Linq; class Program {     static void Main()     {         // JSON 转 XML         string json = "{\"name\":\"Alice\",\"age\":25}";         XmlDocument xmlDoc = JsonToXml(json);         Console.WriteLine(xmlDoc.OuterXml);         // XML 转 JSON         string xml = "<person><name>Bob</name><age>30</age></person>";         string jsonResult = XmlToJson(xml);         Console.WriteLine(jsonResult);     }     static XmlDocument JsonToXml(string json)     {         JObject jsonObject = JObject.Parse(json);         XmlDocument xmlDoc = new XmlDocument();         XmlElement root = xmlDoc.CreateElement("root");         xmlDoc.AppendChild(root);         foreach (var property in jsonObject.Properties())         {             XmlElement element = xmlDoc.CreateElement(property.Name);             element.InnerText = property.Value.ToString();             root.AppendChild(element);         }         return xmlDoc;     }     static string XmlToJson(string xml)     {         XmlDocument xmlDoc = new XmlDocument();         xmlDoc.LoadXml(xml);         JObject jsonObject = new JObject();         foreach (XmlNode node in xmlDoc.DocumentElement.ChildNodes)         {             jsonObject.Add(node.Name, node.InnerText);         }         return jsonObject.ToString();     } }


XML与JSON的转换

using System; using System.Xml; using Newtonsoft.Json; using Newtonsoft.Json.Linq; class Program { static void ...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息