如何用c#和WPF编程地计算父XML节点中子XML节点的数量

本文关键字:节点 XML 计算 何用 WPF 编程 | 更新日期: 2023-09-27 18:05:04

我编写了一个使用XML文件作为数据源的两级主-细节WPF应用程序。下面我将展示这个XML文件的内容。该文件放在项目中包含的数据文件夹中,文件本身也包含在项目中。该文件名为Books.xml。

<?xml version="1.0" encoding="utf-8" ?>
<Books xmlns="">
  <Category name="Computer Programming">
    <Book>
      <Author>H. Schildt</Author>
      <Title>C# 4.0 The Complete Reference</Title>
    </Book>
  </Category>
  <Category name="Art Editions">
    <Book>
      <Author>M. Cervantes</Author>
      <Title>The Ingenious Gentleman Don Quixote of La Mancha </Title>
    </Book>
    <Book>
      <Author>P. Ronsard</Author>
      <Title>Les Amours</Title>
    </Book>
  </Category>
</Books>

我需要计算每个类别节点中Book节点的数量并存储结果。我该怎么做呢?

如何用c#和WPF编程地计算父XML节点中子XML节点的数量

您可以使用LINQ-to-XML的XDocument来实现这一点,例如:

var doc = XDocument.Parse("put_path_to_xml_file_here.xml");
//loop through all <Category>
foreach (var category in doc.Root.Elements("Category"))
{
    //count <Book> elements within current <Category> element
    var numberOfBooks = category.Elements("Book").Count();
    //print the category name and the number of book elements
    Console.WriteLine((string)category.Attribute("name") + " : " + numberOfBooks);
}