博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XML 之 与Json或String的相互转换
阅读量:5093 次
发布时间:2019-06-13

本文共 3072 字,大约阅读时间需要 10 分钟。

1、XML与String的相互转换

[1] XML 转为 String

//载入Xml文件XmlDocument xdoc = new XmlDocument();xdoc.Load("xml文件");string xmlStr = xdoc.InnerXml;

 

[2] String 转为 XML

//载入Xml字符串XmlDocument xdoc = new XmlDocument();xdoc.LoadXml("xml字符串");//保存为Xml文件xdoc.Save("xml文件");

 

2、XML 与 Json 的相互转换

[1] XML 转换为 Json

using System.Xml;  using Newtonsoft.Json;  string xml = "
Test class
100
200
"; XmlDocument doc = new XmlDocument(); doc.LoadXml(xml); string json = Newtonsoft.Json.JsonConvert.SerializeXmlNode(doc);

 

[2] Json 转换为 XML 

方法一:

string json = Newtonsoft.Json.JsonConvert.SerializeXmlNode(xml);  XmlDocument xmlDoc = Newtonsoft.Json.JsonConvert.DeserializeXmlNode(json);xmlDoc.Save("F:/example.xml");

 

方法二:

    using System.Xml;     using System.Runtime.Serialization.Json;     using System.Web.Script.Serialization;     ///          /// json字符串转换为Xml对象         /// XmlDictionaryReader命名空间为using System.Runtime.Serialization.Json;       /// JavaScriptSerializer需添加System.Web.Extensions.dll引用     /// JavaScriptSerializer命名空间为System.Web.Script.Serialization;        ///          ///          /// 
public static XmlDocument Json2Xml(string sJson) { //XmlDictionaryReader reader = JsonReaderWriterFactory.CreateJsonReader(Encoding.UTF8.GetBytes(sJson), XmlDictionaryReaderQuotas.Max); //XmlDocument doc = new XmlDocument(); //doc.Load(reader); JavaScriptSerializer oSerializer = new JavaScriptSerializer(); Dictionary
Dic = (Dictionary
)oSerializer.DeserializeObject(sJson); XmlDocument doc = new XmlDocument(); XmlDeclaration xmlDec = doc.CreateXmlDeclaration("1.0", "UTF-8", "yes"); doc.InsertBefore(xmlDec, doc.DocumentElement); XmlElement nRoot = doc.CreateElement("root"); doc.AppendChild(nRoot); foreach (KeyValuePair
item in Dic) { XmlElement element = doc.CreateElement(item.Key); KeyValue2Xml(element, item); nRoot.AppendChild(element); } return doc; } private static void KeyValue2Xml(XmlElement node, KeyValuePair
Source) { object kValue = Source.Value; if (kValue.GetType() == typeof(Dictionary
)) { foreach (KeyValuePair
item in kValue as Dictionary
) { XmlElement element = node.OwnerDocument.CreateElement(item.Key); KeyValue2Xml(element, item); node.AppendChild(element); } } else if (kValue.GetType() == typeof(object[])) { object[] o = kValue as object[]; for (int i = 0; i < o.Length; i++) { XmlElement xitem = node.OwnerDocument.CreateElement("Item"); KeyValuePair
item = new KeyValuePair
("Item", o[i]); KeyValue2Xml(xitem, item); node.AppendChild(xitem); } } else { XmlText text = node.OwnerDocument.CreateTextNode(kValue.ToString()); node.AppendChild(text); } }

 

转载于:https://www.cnblogs.com/xinaixia/p/5069615.html

你可能感兴趣的文章
微信页面关于点击按钮关注公众号放到链接里无关注按钮
查看>>
python 字典处理的一些坑
查看>>
构建oracle12c的Docker镜像
查看>>
用户权限命令(chmod,chown,umask,lsattr/chattr)
查看>>
Maven详解
查看>>
Linux系统中‘dmesg’命令处理故障和收集系统信息的7种用法
查看>>
数据结构 : Hash Table [II]
查看>>
面向对象的小demo
查看>>
获取地址栏参数
查看>>
java之hibernate之helloworld
查看>>
微服务之初了解(一)
查看>>
Iterator invalidation(迭代器失效)
查看>>
GDOI DAY1游记
查看>>
RHEL 无图形界面安装oracle 11gr2
查看>>
sql连接left join、right join、inner join的使用
查看>>
h5 的localStorage和sessionStorage存到缓存里面的值是string类型
查看>>
自定义序列化
查看>>
1020. 分解质因数
查看>>
linux下的shell——如何修改shell的提示符,能够出现登录用户名、主机名和路径...
查看>>
网络流量监测图形分析工具 Cacti
查看>>