如何选择具有相似名称的多个XML子节点

时间:2012-12-30 21:48:29

标签: c# xml asp.net-4.0

这是我的XML文件:

<hashtable>
  <entry>
    <string>krishna.com</string>
    <hashtable>
      <entry>
        <string>status</string>
        <string>available</string>
      </entry>
      <entry>
        <string>classkey</string>
        <string>domcno</string>
      </entry>
    </hashtable>
  </entry>
  <entry>
    <string>krishna.net</string>
    <hashtable>
      <entry>
        <string>status</string>
        <string>regthroughothers</string>
      </entry>
      <entry>
        <string>classkey</string>
        <string>dotnet</string>
      </entry>
    </hashtable>
  </entry>
</hashtable>

我想通过krishna.com找到状态(node:hashtable / entry / hashtable / entry / string)(node:hashtable / entry / string)。

我的困难在于有许多类似的节点名称,如string&amp; entry,那我怎样才能检查域名krishna.com&amp;是否有status。通过检查status(字符串节点)和available(字符串节点)来检查krishna.net。

5 个答案:

答案 0 :(得分:3)

你可以尝试这样的事情

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml("Path to your .xml file");
XmlNodeList nodeList = xmlDoc.SelectNodes("//entry/string");

现在您可以编写自己的代码来获取nodeList;

中的信息

答案 1 :(得分:1)

这是适合您的XPath解决方案。

using System;
using System.Xml.Linq;
using System.Xml.XPath;

static string GetStatus(XDocument doc, string nodeName)
{
    //The first xpath translates to: "Select the <hashtable> element that immediately
    // follows the <string> element with a value of nodeName."
    //The second xpath selects the <string> element that immediately follows another <string>
    // element with a value of 'status'. This selected element is a descendant of the
    // <hashtable> element that was selected first. 
    XElement status = doc.XPathSelectElement("//hashtable[preceding-sibling::string = '" + nodeName + "']")
                         .XPathSelectElement("descendant::string[preceding-sibling::string = 'status']");
    return status.Value;
}

使用它可以自我解释:

XDocument doc = XDocument.Load("File_path_to_XML.xml");
string status = GetStatus(doc, "krishna.com");
// status == "available"
string status2 = GetStatus(doc, "krishna.net");
// status2 == "regthroughothers"

答案 2 :(得分:0)

您可以使用LINQ to XML搜索满足指定条件的节点。 这是一个选择第一级“入口”节点的示例,该节点在其子“哈希表”节点下包含“status”和“available”子节点,如示例结构中所示:

XDocument doc;
using (FileStream fs = new FileStream("XMLFile1.xml", FileMode.Open))
{
   doc = XDocument.Load(fs);
}
string[] elms = doc.Element("hashtable").Elements("entry").Where(elm => 
            elm.Element("hashtable").Element("entry").Elements("string").First().Value == "status" &&
            elm.Element("hashtable").Element("entry").Elements("string").Skip(1).First().Value == "available")
        .Select(elm => elm.Element("string").Value).ToArray();

如果您的文件结构可能与您提供的示例不同,则需要相应地修改查询

答案 3 :(得分:0)

您可能需要以下内容:

//hashtable/entry/string[1][text() = 'krishna.com']"/../hastable/entry/string[1][text() = 'status']"/../string[2][text() = 'available']

未经测试但有几点需要注意:

  • //表示从任何节点开始
  • A/B表示元素A
  • 下的元素B.
  • A/B[1]表示元素A下的第一个元素B
  • A[text() = 'foo']表示包含foo作为文本值的元素A
  • ..表示父节点

如果这不起作用,您可以随时首先找到krishna.com的hashtable,然后在{{下的第一个位置找到包含值“status”的string节点1}}节点然后确保只有该entry节点的兄弟是另一个包含“可用”的string节点。

答案 4 :(得分:0)

以下是我的想法:

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("your_xml_file.xml");
XmlElement root = xmlDoc.DocumentElement;
string query = "child::entry/child::string[following-sibling::*/descendant::string[text()='available']]";
XmlNodeList nodes = root.SelectNodes(query);
foreach (XmlNode node in nodes)
{
    Console.WriteLine(node.InnerText);
}  
//Result
krishna.com

它将显示“可用”的域名 在查询字符串中,“child :: entry”将选择root的子节点,称为“entry”。 (不是后代的)。所以路径是“/ hashtable / entry” 接下来,对于每个“entry”节点,它将选择包含域名的“string”子节点。在此步骤中,它使用表达式选择“可用”onle。现在路径变为“/ hashtable / entry / string”。在表达式中,首先它将选择所有以下兄弟,并且在您的xml中,只有“哈希表”符合条件。最后,对于以下所有兄弟姐妹,我们检查其后代,如果后代的名称是“string”并且其内部文本是“available”,则将选择当前的域节点。
希望它有用。