如何在C#中使用xml解析器提取xml中节点的所有值?

问题描述 投票:0回答:1

我正在尝试使用XML在Visual Studio中解析C#文件,并希望存储每个节点的attributes(以供进一步使用)。 XML文件如下所示:

<FBType GUID="123" Name="plcStart" Comment="Composite Function Block Type" Namespace="abc">
  <Attribute Name="Configuration.FB.IDCounter" Value="1" />
  <Identification Standard="123" />
  <VersionInfo Organization="org" Version="0.0" Author="sb" Date="8/23/2013" Remarks="template" />
  <InterfaceList>
    <EventInputs>
      <Event Name="ACK" />
    </EventInputs>
    <EventOutputs>
      <Event Name="START" />
    </EventOutputs>
  </InterfaceList>
</FBType>

我在下面编写了代码,但我只是检索了后三个节点及其attributes。我尝试了现在已注释的代码部分,但是没有用。感谢您的帮助。

try
{
    foreach (XmlNode node in doc.DocumentElement)
    {

        //foreach (XmlNode child in node.ChildNodes)
        //{

        for (int i = 0; i < node.Attributes.Count; i++)
        {
            string atr = node.Attributes[i].InnerText;
            Console.WriteLine(node.Name + "   " + atr);
        }
        //}
        foreach (XmlNode child in node.ChildNodes)
        {
            for (int j = 0; j < node.ChildNodes.Count; j++)
            {

                string childName = child.Attributes[j].InnerText;
                Console.WriteLine(childName);
            }
        }
    }
}
catch (Exception e) { }
c# xml-parsing
1个回答
0
投票

使用Xml Linq可以将结果展平到类对象上

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication152
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            List<FBTType> fBTTypes = doc.Descendants("FBType").Select(x => new FBTType()
            {
                guid = (string)x.Attribute("GUID"),
                typeName = (string)x.Attribute("Name"),
                comment = (string)x.Attribute("Comment"),
                ns = (string)x.Attribute("Namespace"),
                name = (string)x.Element("Attribute").Attribute("Name"),
                value = (string)x.Element("Attribute").Attribute("Value"),
                identification = (string)x.Element("Identification").Attribute("Standard"),
                organization = (string)x.Element("VersionInfo").Attribute("Organization"),
                version = (string)x.Element("VersionInfo").Attribute("Version"),
                author = (string)x.Element("VersionInfo").Attribute("Author"),
                date = (DateTime)x.Element("VersionInfo").Attribute("Date"),
                remarks = (string)x.Element("VersionInfo").Attribute("Remarks"),
                eventInputs = x.Descendants("EventInputs").FirstOrDefault().Elements("Event").Select(y => (string)y.Attribute("Name")).ToArray(),
                eventOutputs = x.Descendants("EventOutputs").FirstOrDefault().Elements("Event").Select(y => (string)y.Attribute("Name")).ToArray(),
            }).ToList();
        }
    }
    public class FBTType
    {
        public string guid { get; set; }
        public string typeName { get; set; }
        public string comment { get; set; }
        public string ns { get; set; }
        public string name { get; set; }
        public string value { get; set; }
        public string identification { get; set; }
        public string organization { get; set; }
        public string version { get; set; }
        public string author { get; set; }
        public DateTime date { get; set; }
        public string remarks { get; set; }
        public string[] eventInputs { get; set; }
        public string[] eventOutputs { get; set; }
    }


}
© www.soinside.com 2019 - 2024. All rights reserved.