将XML文件中的内容转换为Json对象

Posted 华天虎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将XML文件中的内容转换为Json对象相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Web.Script.Serialization;
using Newtonsoft.Json;
using System.Windows.Forms;

namespace XmlToJsonDemo
{
class Program
{
static void Main(string[] args)
{
//将XML文件中的内容转换为Json对象
XmlDocument doc = new XmlDocument();
doc.Load(Application.StartupPath + @"\XMLFile1.xml");
string jsonText = JsonConvert.SerializeXmlNode(doc);
Console.WriteLine(jsonText);
Console.ReadKey();

}
}
}

 

Newtonsoft.Json动态库需要单独下载

以上是关于将XML文件中的内容转换为Json对象的主要内容,如果未能解决你的问题,请参考以下文章

Freemarker:将网页内容转换为 Json 对象

Android:将 Json 对象转换为 Strings.xml

在转换为 XML 之前更改 JSON 对象中的属性名称

如何使用内容协商将 json 转换为 ktor 中的 kotlin 对象?

将服务器主体中的 json 文件转换为节点中的 json 对象

将 stdClass 类的对象转换为 JSON 对象