JSON.NET:JSON 转换为 XML ,XML 转换为 JSON
发布时间:2020-12-16 19:27:26 所属栏目:百科 来源:网络整理
导读:[代码] XML TO JSON 01 string xml = @"?xml version=""1.0"" standalone=""no""? 02 root 03 person id=""1"" 04 nameAlan/name 05 urlhttp://www.google.com/url 06 /person 07 person id=""2"" 08 nameLouis/name 09 urlhttp://www.yahoo.com/url 10 11 /
[代码]XML TO JSON
01 |
string xml = @"<?xml version=""1.0"" standalone=""no""?> |
04 |
<name>Alan</name> |
05 |
<url>http://www.google.com</url> |
06
</person> |
08
<name>Louis</name> |
09 |
<url>http://www.yahoo.com</url> |
10
11 |
</root>"; |
12
|
13 |
XmlDocument doc = new XmlDocument(); |
14
doc.LoadXml(xml); |
16
jsonText = JsonConvert.SerializeXmlNode(doc); |
18
// "?xml": { |
20
// "@standalone": "no" |
21 |
// },monospace!important; font-size:10pt!important; min-height:inherit!important; display:block!important">22 |
// "root": { |
24
// { |
25 |
// "@id": "1",monospace!important; font-size:10pt!important; min-height:inherit!important; display:block!important">26 |
// "name": "Alan", |
27 |
// "url": "http://www.google.com" |
28
29 |
// { |
30
// "@id": "2",monospace!important; font-size:10pt!important; min-height:inherit!important; display:block!important">31 |
// "name": "Louis",monospace!important; font-size:10pt!important; min-height:inherit!important; display:block!important">32 |
// "url": "http://www.yahoo.com" |
34
// ] |