目前我的代码结构使用XmlDocument加载Xml数据,然后SelectNodes遍历一个重复项的列表.
At present, the structure of my code uses XmlDocument to load Xml data and then SelectNodes to iterate through a list of repeating items.
对于每个元素,我使用 XmlNode.SelectSingleNode 来挑选字段元素.
For each element, I am using XmlNode.SelectSingleNode to pick out the field elements.
我现在想使用 JSON.NET 来获得与作为 JSON 交付给我的文档相同的结果.答案可以不是 JSON.net,只要它是 C# 可集成的.
I now want to use JSON.NET to achieve the same results with documents delivered to me as JSON. The answer can be something other than JSON.net, so long as it's C# integrable.
Json.NET 有 SelectToken.它使用类似于 DataBinder.Eval 的语法通过字符串表达式获取 JSON:
Json.NET has SelectToken. It uses a syntax similar to DataBinder.Eval to get JSON via a string expression:
JObject o = JObject.Parse("{'People':[{'Name':'Jeff'},{'Name':'Joe'}]}");
// get name token of first person and convert to a string
string name = (string)o.SelectToken("People[0].Name");
或者如果您想选择多个值:
Or if you wanted to select multiple values:
JObject o = JObject.Parse("{'People':[{'Name':'Jeff','Roles':['Manager', 'Admin']}]}");
// get role array token of first person and convert to a list of strings
IList<string> names = (string)o.SelectToken("People[0].Roles").Select(t => (string)t).ToList();
文档:使用 SelectToken 查询 JSON
这篇关于什么是 XML 的 XPath、SelectNodes、SelectSingleNode 的 JSON.NET 等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
读取 XML 时忽略空格Ignore whitespace while reading XML(读取 XML 时忽略空格)
带有检查空元素的 XML 到 LINQXML to LINQ with Checking Null Elements(带有检查空元素的 XML 到 LINQ)
在 C# 中读取带有未闭合标签的 XMLReading XML with unclosed tags in C#(在 C# 中读取带有未闭合标签的 XML)
在 C# 中使用 Html 敏捷性解析表格、单元格Parsing tables, cells with Html agility in C#(在 C# 中使用 Html 敏捷性解析表格、单元格)
使用 LINQ 从 xml 中删除元素delete element from xml using LINQ(使用 LINQ 从 xml 中删除元素)
解析格式错误的 XMLParse malformed XML(解析格式错误的 XML)