XML转换为嵌套的字典结构

本文关键字:字典 结构 嵌套 转换 XML | 更新日期: 2023-09-27 18:13:27

我有一个这样的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<Admin>
  <Name>function1</Name>
  <Id>1</Id>
  <Value>True</Value>
  <Name>function2</Name>
  <Id>2</Id>
  <Value>False</Value>
  .
  .
  .
  <Name>functionN</Name>
  <Id>N</Id>
  <Value>False</Value>
</Admin>

我想把这个文件加载到一个字典结构中,像这样:

Dictionary<AccessPoint, bool>

AccessPoint是一个类:

public class AccessPoint
{
  public int    Id   { get; set; }
  public string Name { get; set; }
}

那么我怎样才能把xml的每一个片段在更短的代码中放到正确的位置呢?

下面是我目前所做的:

using (XmlReader reader = new XmlTextReader(path))
{
  XmlDocument doc = new XmlDocument();
  doc.Load(reader);
  XmlNodeList nodeList = doc.ChildNodes;
  foreach (XmlNode node in nodeList)
  {
    var xmlValue = new Dictionary<string, string>();
    foreach (XmlNode child in node.ChildNodes)
    {
      xmlValue[child.LocalName] = child.InnerText;
    }
    entityInfo.Add(xmlValue);
  }
}

但是,entityInfo只收集xml文件的最后一个单位值:

{[Value, False]}
{[Id, N]}
{[Name, FunctionN]}

XML转换为嵌套的字典结构

您可能可以编写一个XPath查询来获得您想要的内容,但是如果您这样做,可能更容易获得您想要的内容(也更高效!)

class AccessPoint
{
  public string Name  { get ; set ; }
  public int    Id    { get ; set ; }
  public bool   Value { get ; set ; }
}
static IEnumerable<AccessPoint> AccessPointsFromXml( XDocument doc )
{
  AccessPoint item = null ;
  foreach( XElement e in doc.Root.Elements() )
  {
    switch ( e.Name.LocalName )
    {
    case "Name" :
      if ( item != null ) yield return item ;
      item = new AccessPoint{ Name = e.Value , } ;
      break ;
    case "Id" :
      int id ;
      int.TryParse(e.Value,out id) ;
      if ( item == null ) item = new AccessPoint() ;
      item.Id = id ;
      break ;
    case "Value" :
      bool value ;
      bool.TryParse(e.Value,out value) ;
      if ( item == null ) item = new AccessPoint() ;
      item.Value = value ;
      break ;
    }
  }
  // take care of the last item (if there is one)
  if ( item != null ) yield return item ;
}

建立你的字典很容易:

string xml = @"
  <?xml version=""1.0"" encoding=""utf-8""?>
  <Admin>
    <Name>function1</Name>
    <Id>1</Id>
    <Value>True</Value>
    <Name>function2</Name>
    <Id>2</Id>
    <Value>False</Value>
    <Name>function3</Name>
    <Id>3</Id>
    <Value>False</Value>
  </Admin>
  ".Trim() ;
XDocument                    doc  = XDocument.Load( new StringReader(xml) ) ;
Dictionary<AccessPoint,bool> dict = AccessPointsFromXml(doc)
                                    .ToDictionary( x => x , x => x.Value )
                                    ;

编辑注释:

XmlDocument代替XDocument不会改变太多:

static IEnumerable<AccessPoint> AccessPointsFromXml( XmlDocument doc )
{
  AccessPoint item = null ;
  foreach( XmlElement e in doc.DocumentElement.ChildNodes )
  {
    switch ( e.LocalName )
    {
    case "Name" :
      if ( item != null ) yield return item ;
      item = new AccessPoint{ Name = e.InnerText } ;
      break ;
    case "Id" :
      int id ;
      int.TryParse(e.InnerText,out id) ;
      if ( item == null ) item = new AccessPoint() ;
      item.Id = id ;
      break ;
    case "Value" :
      bool value ;
      bool.TryParse(e.InnerText,out value) ;
      if ( item == null ) item = new AccessPoint() ;
      item.Value = value ;
      break ;
    }
  }
  if ( item != null ) yield return item ;
}

其他需要注意的事情:您可能希望使您的AccessPoint类实现IComparable<AccessPoint>,因此您的字典的行为更像您期望的那样:

class AccessPoint : IComparable<AccessPoint>
{
  public string Name { get ; set ; }
  public int  Id { get ; set ; }
  public bool Value { get ; set ; }
  public int CompareTo( AccessPoint other )
  {
    int cc = other != null ? 0 : -1 ;
    if ( cc == 0 )
    {
      cc = String.Compare( this.Name , other.Name , StringComparison.Ordinal ) ;
    }
    if ( cc == 0 )
    {
      cc = this.Id.CompareTo( other.Id ) ;
    }
    return cc ;
  }
  public override string ToString()
  {
    return string.Format( "name={0}, id={1}, value={2}" , Name,Id,Value ) ;
  }
}