如何将 JSON 转换为 XML 或 XML 转换为 JSON?

时间:2023-04-27
本文介绍了如何将 JSON 转换为 XML 或 XML 转换为 JSON?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我开始使用 Json.NET 将 JSON 格式的字符串转换为对象,反之亦然.我不确定在 Json.NET 框架中,是否可以将 JSON 格式的字符串转换为 XML 格式,反之亦然?

I started to use Json.NET to convert a string in JSON format to object or viceversa. I am not sure in the Json.NET framework, is it possible to convert a string in JSON to XML format and viceversa?

推荐答案

是的.使用包含辅助方法的 JsonConvert 类来实现此精确目的:

Yes. Using the JsonConvert class which contains helper methods for this precise purpose:

// To convert an XML node contained in string xml into a JSON string   
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
string jsonText = JsonConvert.SerializeXmlNode(doc);

// To convert JSON text contained in string json into an XML node
XmlDocument doc = JsonConvert.DeserializeXmlNode(json);

此处的文档:在JSON 和 XML 与 Json.NET

这篇关于如何将 JSON 转换为 XML 或 XML 转换为 JSON?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:JSON.NET 错误检测到类型的自引用循环 下一篇:在 ASP.NET MVC 中设置默认 JSON 序列化程序

相关文章