我有以下代码,用于遍历XML:
private void btn_readXML_Click(object sender, EventArgs e)
{
var doc = new XmlDocument();
doc.Load("e:\\contacts.xml");
// Load xml document.
TraverseNodes(doc.ChildNodes);
}
static List<string> xmlnodes = new List<string>();
private static void TraverseNodes(XmlNodeList nodes)
{
foreach (XmlNode node in nodes)
{
List<string> temp = new List<string>();
temp.Add("Node name: " + node.Name.ToString());
XmlAttributeCollection xmlAttributes = node.Attributes;
foreach (XmlAttribute at in xmlAttributes)
{
temp.Add(" Atrib: " + at.Name + ": " + at.Value);
}
xmlnodes.AddRange(temp);
TraverseNodes(node.ChildNodes);
}
但我的问题是,我不想遍历整个文档,我只想遍历节点,然后是其子节点,它具有属性&#39; X&#39;。请注意,我不知道节点在哪里。所以基本上我要做的是,找出节点是否存在(它是否具有属性&#39; X&#39;。这是我如何识别其正确的节点)如果是,则获取它的孩子。
任何人都可以帮助我吗?我对XML很陌生。谢谢你提前!
答案 0 :(得分:3)
假设您的XML具有以下结构:
<Contacts>
<Contact X="abc">
<Child1></Child1>
</Contact>
<Contact X="def">
<Child2></Child2>
</Contact>
</Contacts>
使用XmlNode.SelectNodes的示例代码:
var doc = new XmlDocument();
doc.Load("e:\\contacts.xml");
//get root element of document
XmlElement root = doc.DocumentElement;
//select all contact element having attribute X
XmlNodeList nodeList = root.SelectNodes("//Contact[@X]");
//loop through the nodelist
foreach (XmlNode xNode in nodeList)
{
//traverse all childs of the node
}
对于不同的 XPath查询,请参阅此link。
<强>更新强>:
如果要在文档中选择具有属性X
的所有元素。没有它们存在的问题。您可以使用以下内容:
//select all elements in the doucment having attribute X
XmlNodeList nodeList = root.SelectNodes("//*[@X]");
答案 1 :(得分:0)
试试这个:
private void btn_readXML_Click(object sender, EventArgs e)
{
var doc = new XmlDocument();
doc.Load("e:\\contacts.xml");
var nodes = xdoc.SelectNodes("//yournodename");
// ex.
// var nodes = xdoc.SelectNodes("//Company");
TraverseNodes(nodes);
}