检查Xml Node是否有Attribute

本文关键字:Attribute 是否 Node Xml 检查 | 更新日期: 2023-09-27 18:17:35

如何检查节点是否具有特定属性

我所做的是:

string referenceFileName = xmlFileName;
XmlTextReader textReader = new XmlTextReader(referenceFileName);
while (textReader.Read())
{
  XmlNodeType nType = textReader.NodeType;
  // if node type is an element
  if (nType == XmlNodeType.Element)
  {
    if (textReader.Name.Equals("Control"))
    {
      if (textReader.AttributeCount >= 1)
      {
        String val = string.Empty;
        val = textReader.GetAttribute("Visible");
        if (!(val == null || val.Equals(string.Empty)))
        {
        }
      }
    }
  }

是否有任何函数来检查给定属性是否存在?

检查Xml Node是否有Attribute

不,我认为XmlTextReader类中没有任何方法可以告诉您特定属性是否存在。

你可以做一件事来检查

if(null == textReader.GetAttribute("Visible"))
{
   //this means attribute doesn't exist
}

因为MSDN说关于GetAttribute方法

    Return the value of the specified attribute. If the attribute is not found,
 a null reference (Nothing in Visual Basic) is returned.

发现:http://csharpmentor.blogspot.co.uk/2009/05/safely-retrive-attribute-from-xml-node.html

您可以将XmlNode转换为XmlElement,然后使用HasAttribute方法进行检查。我刚试过了,很好用。

对不起,这不是一个使用你的代码的例子-我很着急,但希望它能帮助未来的问!

尝试LINQ-To-XML(下面的查询可能需要一些小的修复,因为我没有你正在使用的XML)

XDocument xdoc = XDocument.Load("Testxml.xml");  
// It might be that Control element is a bit deeper in XML document
// hierarchy so if you was not able get it work please provide XML you are using
string value = xdoc.Descendants("Control")
                  .Where(d => d.HasAttributes
                              && d.Attribute("Visible") != null
                              && !String.IsNullOrEmpty(d.Attribute("Visible").Value))
                  .Select(d => d.Attribute("Visible").Value)
                  .Single();

//使用XmlReader检查xml元素值是否存在

      using (XmlReader xmlReader = XmlReader.Create(new StringReader("XMLSTRING")))
       {
           if (xmlReader.ReadToFollowing("XMLNODE")) 
            {
                string nodeValue = xmlReader.ReadElementString("XMLNODE");                
            }
        }     

参考Harish的回答,以下代码对我有效

 XmlTextReader obj =new XmlTextReader("your path");
    //include @before"" if its local path
      while (obj.Read()) { 
      Console.WriteLine(obj.GetAttribute("name"));
      obj.MoveToNextAttribute();
      }

如果有人不使用阅读器,只是一个XmlDocument尝试XmlAttributeCollection/XmlAttribute

XmlDocument doc = new XmlDocument();
try{
doc.Load(_indexFile);
    foreach(XmlNode node in doc.DocumentElement.ChildNodes){
        XmlAttributeCollection attrs = node.Attributes;
        foreach(XmlAttribute attr in attrs){
            Console.WriteLine(node.InnerText + ": " + attr.Name + " - " + attr.Value);
            if(attr.Name == "my-amazing-attribute")
            {
                //Do something with attribute
            }
        }
    }
}
} catch (Exception ex) {
    //Do something with ex
}