C# JSON、XML互转
生活随笔
收集整理的這篇文章主要介紹了
C# JSON、XML互转
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
包:Newtonsoft.Json 13.0.0.0
環境:Net 4.5
program:
string json = @"{'@Id': 1,'Email': 'james@example.com','Active': true,'CreatedDate': '2013-01-20T00:00:00Z','Roles': ['User','Admin'],'Team': {'@Id': 2,'Name': 'Software Developers','Description': 'Creators of fine software products and services.'} }";XNode node = JsonConvert.DeserializeXNode(json, "Root");//Josn轉Xmlstring xml = node.ToString();Console.WriteLine(xml);/*Output:<Root Id="1"><Email>james@example.com</Email><Active>true</Active><CreatedDate>2013-01-20T00:00:00Z</CreatedDate><Roles>User</Roles><Roles>Admin</Roles><Team Id="2"><Name>Software Developers</Name><Description>Creators of fine software products and services.</ Description></Team></Root>*/string json1 = JsonConvert.SerializeXNode(node);//Xml轉JosnConsole.WriteLine(json.Equals(json));//Output:trueConsole.ReadKey();總結
以上是生活随笔為你收集整理的C# JSON、XML互转的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 怎样给宝宝取个小名
- 下一篇: STATA:基础命令