我开始使用 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!