存储和读取常量值的合理方法

时间:2013-06-14 21:20:53

标签: c# xml constants

所以我有一个xml结构,格式如下:

< Smart>
  < Attribute>
    < id >1 </id >
    < name >name </ name>
    < description >description</ description >
  </ Attribute>
     .
     .
     .
</Smart>

然后,我需要获取用户输入以生成数据表,具体取决于用户输入的不同常量将被使用。 ID用于区分不同的常量。所有这些常量都是在启动之前预定义的。以下是我的代码,用于查找所需的常量并将它们存储到数据表中

for ( int row = 0; row < rowcount; row++)
{
found = false;
XmlTextReader textReader = new XmlTextReader ("Smart_Attributes.xml" );
textReader.ReadStartElement( "Smart" );
while (!found)
{
   textReader.ReadStartElement("Attribute" );
   DataId = Convert .ToByte(textReader.ReadElementString("id" ));

   if (DataId > id)
   {
      dataView[count][5] = "Unknown" ;
      dataView[count][7] = "Unknown" ;
      found = true ;
   }
   if (DataId == id)
   {
      dataView[count][5] = textReader.ReadElementString("name" );
      dataView[count][7] = textReader.ReadElementString("description" );
      found = true ;
   }
   else
   {
      textReader.ReadElementString("name" );
      textReader.ReadElementString("description" );
   }
   textReader.ReadEndElement(); //</Attribute>                            
}
count++;
}
}

这确实可以在相应的行中找到所需的常量。然而,似乎很多工作没有太大的收获。使用像数据集这样的东西可以做得更好吗?任何其他建议都会非常有用。

1 个答案:

答案 0 :(得分:0)

XmlTextReader的好处在于它的前瞻性。这允许您只需一次扫描即可读取非常大的文件。如果您的XML文件较小,并且您很乐意在任何时候将整个结构保存在内存中,则可以使用Linq2Xml,并将其读入XDocument类。

var doc = XDocument.Load("Smart_Attributes.xml");

var rows = doc.Descendants("Attribute").Where(e => e.Element("id").Value == id)
    .Select(e => new 
        {
            Name = e.Element("name").Value,
            Description = e.Element("description").Value
        });

// Load rows into your datatable