C#:获取XML doc的所有节点

时间:2011-09-19 07:09:16

标签: c# xml

是否有一种简单的方法可以从xml文档中获取所有节点?我需要每个节点,childnode等,以检查它们是否具有某些属性。

或者我是否必须抓取文档,询问子节点?

8 个答案:

答案 0 :(得分:22)

在LINQ to XML中,它非常简单:

XDocument doc = XDocument.Load("test.xml"); // Or whatever
var allElements = doc.Descendants();

所以要查找具有特定属性的所有元素,例如:

var matchingElements = doc.Descendants()
                          .Where(x => x.Attribute("foo") != null);

假设您想要所有元素。如果您想要所有节点(包括文本节点等,但,包括属性作为单独的节点),则需要使用DescendantNodes()

编辑:LINQ to XML中的命名空间很不错。你会用:

var matchingElements = doc.Descendants()
                          .Where(x => x.Attribute(XNamespace.Xmlns + "aml") != null);

或用于其他命名空间:

XNamespace ns = "http://some.namespace.uri";

var matchingElements = doc.Descendants()
                          .Where(x => x.Attribute(ns + "foo") != null);

答案 1 :(得分:6)

见这里:Iterating through all nodes in XML file

不久:

 string xml = @"
    <parent>
      <child>
        <nested />
      </child>
      <child>
        <other>
        </other>
      </child>
    </parent>
    ";

  XmlReader rdr = XmlReader.Create(new System.IO.StringReader(xml));
  while (rdr.Read())
  {
    if (rdr.NodeType == XmlNodeType.Element)
    {
      Console.WriteLine(rdr.LocalName);
    }
  }

答案 2 :(得分:4)

在我看来,最简单的解决方案是使用XPath。如果你有.NET 2:

,这也适用
var testDoc = new XmlDocument();
                testDoc.LoadXml(str);
                var tmp = testDoc.SelectNodes("//*"); // match every element

答案 3 :(得分:3)

XDocument.Descendants将返回可枚举的平面中的所有节点。

答案 4 :(得分:1)

查看LINQ to XML。这就是你需要的。

<击> http://www.hookedonlinq.com/LINQtoXML5MinuteOverview.ashx

例如,您可以使用SelectMany扩展名。

但是如果要检查值,可以使用LINQ创建where - 语句。

答案 5 :(得分:0)

  protected void Page_Load(object sender, EventArgs e)
  {

            XmlDocument document = new XmlDocument();

            string xmlStr;
            using (var wc = new WebClient())
            {
                xmlStr = wc.DownloadString("test.xml");
            }

            var xmlDoc = new XmlDocument();

            xmlDoc.LoadXml(xmlStr);

            XmlNode xnod = xmlDoc.DocumentElement;

           AddWithChildren(xnod, 1);
 }

答案 6 :(得分:0)

public void AddWithChildren(XmlNode xnod, Int32 intLevel) //,XmlDocument xmlDoc
    {  
        List<IEnumerable> item = new List<IEnumerable>();
        XmlNode xnodWorking;
        String strIndent = new string('-', 2 * intLevel);
        String strIndent1 = new string('@', 2 * intLevel);
        if (xnod.NodeType == XmlNodeType.Element)
        {
            item.Add(new ListXML(strIndent + xnod.Name, strIndent + xnod.Name, ""));
            XmlNamedNodeMap mapAttributes = xnod.Attributes;
            foreach (XmlNode xnodAttribute in mapAttributes)
            {
                item.Add(new ListXML(strIndent1 + xnodAttribute.Name, strIndent1 + xnodAttribute.Name, ""));
            }
            if (xnod.HasChildNodes)
            {
                xnodWorking = xnod.FirstChild;
                while (xnodWorking != null)
                {
                    AddWithChildren(xnodWorking, intLevel + 1);
                    xnodWorking = xnodWorking.NextSibling;
                }
            }
        }
    }

答案 7 :(得分:0)

string AttrNameerr = "err";//find error code in xml
XmlReader rdr = XmlReader.Create(new stem.IO.StringReader(somesXMLtring));//somesXMLtring is xml in string variable we want to find attribute in.
while (rdr.Read())
{
    if (rdr.NodeType == XmlNodeType.Element)
    {
      //Found the new element, now check if the required attribute is present or not. if not, ignore, if yes then display the same
      string val = rdr.GetAttribute(AttrNameerr);//AttrNameerr is name of attribute we need to get value of which. here we are searching for error code stored as value of 'err' attribute

        if (val != null)
          textBox.Text = strResult = "error = " + rdr.GetAttribute(AttrNameerr);

    }
}