4

如何使用 C# 以正确的方式获取属性“动作”和“文件名”值?

XML:

<?xml version="1.0" encoding="utf-8" ?>
 <Config version="1.0.1.1" >
   <Items>
    <Item action="Create" filename="newtest.xml"/>
    <Item action="Update" filename="oldtest.xml"/>   
  </Items>
 </Config>

C#:我无法获取属性值以及如何在 foreach 循环中获取值?如何解决这个问题?

        var doc = new XmlDocument();
        doc.Load(@newFile);
        var element = ((XmlElement)doc.GetElementsByTagName("Config/Items/Item")[0]); //null
        var xmlActions = element.GetAttribute("action"); //cannot get values
        var xmlFileNames= element.GetAttribute("filename"); //cannot get values

         foreach (var action in xmlActions)
         {
           //not working
         }

         foreach (var file in xmlFileNames)
         {
           //not working
         }

您的代码示例对我来说意义重大。谢谢!

4

4 回答 4

9

您可以使用LINQ to XMLAction以下查询返回具有和FileName属性的强类型项目集合:

var xdoc = XDocument.Load(@newFile);

var items = from i in xdoc.Descendants("Item")
            select new {
               Action = (string)i.Attribute("action"),
               FileName = (string)i.Attribute("fileName")
            };

foreach (var item in items)
{
   // use item.Action or item.FileName
}
于 2013-08-02T13:35:39.913 回答
3

GetElementsByTagName只会发现你的直系后代。该参数应该只是一个标签名称,而不是元素的完整路径。

如果您想在提供 XPath 表达式的同时搜索整个文档,请SelectNodes改用。

对于您的文档,它应该如下所示:

var element = (XmlElement)doc.SelectNodes("/Config/Items/Item")[0];
于 2013-08-02T13:13:06.600 回答
2

You can achieve what you're asking with LINQ to XML:

// For each element that is a child of your Items element that is named Item
foreach (var item in XElement.Load("file.xml").Descendants("Items").Elements("Item"))
{
    // If the element does not have any attributes
    if (!item.Attributes().Any())
    {
        // Lets skip it
        continue;
    }

    // Obtain the value of your action attribute - Possible null reference exception here that should be handled
    var action = item.Attribute("action").Value;
    // Obtain the value of your filename attribute - Possible null reference exception here that should be handled
    var filename = item.Attribute("filename").Value;

    // Do something with your data
    Console.WriteLine("action: {0}, filename {1}", action, filename);
}
于 2013-08-02T13:31:27.503 回答
2

问题中的代码有很多问题:
1.您在GetElementsByTagName中使用XPath,只需使用标签
2.您只能使用[0]获取XmlNodeCollection中的第一个XmlNode
3.因为您只有一个 XmlNode,你只得到一个字符串结果来获取属性,而不是字符串集合,然后你试图通过
4 枚举它。你的 foreach 坏了,结果对象没有类型

这是一个可行的片段:

var doc = new XmlDocument();
doc.Load("test.xml");
var items = doc.GetElementsByTagName("Item");

var xmlActions = new string[items.Count];
var xmlFileNames = new string[items.Count];
for (int i = 0; i < items.Count; i++) {
    var xmlAttributeCollection = items[i].Attributes;
    if (xmlAttributeCollection != null) {
        var action = xmlAttributeCollection["action"];
        xmlActions[i] = action.Value;

        var fileName = xmlAttributeCollection["filename"];
        xmlFileNames[i] = fileName.Value;
    }
}

foreach (var action in xmlActions) {
    //working
}

foreach (var file in xmlFileNames) {
    //working
}

或者,如果您在对集合中的所有操作和文件名进行操作之前不需要它们,则可以只对 for 循环中的每个操作/文件名进行操作。

于 2013-08-02T13:44:42.650 回答