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的转换
本文2024-09-16 17:42:56发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-17487.html
- 鼎捷EAI整合規範文件V3.1.07 (集團).pdf
- 鼎捷OpenAPI應用場景說明_基礎資料.pdf
- 鼎捷OpenAPI應用場景說明_財務管理.pdf
- 鼎捷T100 API設計器使用手冊T100 APIDesigner(V1.0).docx
- 鼎新e-GoB2雲端ERP B2 線上課程E6-2應付票據整批郵寄 領取.pdf
- 鼎新e-GoB2雲端ERP B2 線上課程A4使用者建立權限設定.pdf
- 鼎新e-GoB2雲端ERP B2 線上課程C3會計開帳與會計傳票.pdf
- 鼎新e-GoB2雲端ERP B2 線上課程E6-1應付票據.pdf
- 鼎新e-GoB2雲端ERP B2 線上課程A5-1進銷存參數設定(初階篇).pdf
- 鼎新e-GoB2雲端ERP B2 線上課程D2帳款開帳與票據開帳.pdf