使用Xdocument检索xml的子元素

时间:2013-12-12 08:02:31

标签: c# xml xml-parsing linq-to-xml

我想解析这样的XML文件:

 <?xml version="1.0" encoding="utf-8" ?> 
    <database name="myDb">
      <table name="myTable">
        <field name="Code" type="int" size="0" identity="true" primarykey="true" description="کد شناسه" reference=""></field>
        <field name="Name" type="nvarchar" size="50" identity="false" primarykey="false" description="نام شخص" reference=""></field>
      </table>
      <table name="yourTable">
        <field name="Code" type="int" size="0" identity="true" primarykey="true" description="کد شناسه" reference=""></field>
        <field name="Title" type="nvarchar" size="50" identity="false" primarykey="false" description="نام شخص" reference=""></field>
      </table>
    </database>

问题在于,在我的内部foreach中,它将解析4个字段,而不是与每个表相关的2个字段。如何更改代码以只读取当前表的字段?

XDocument xdoc = XDocument.Load("d:\\tables.xml");
        foreach (XNode table in xdoc.Descendants("database").Nodes())
        {
            fields = "";
            tableName = XElement.Parse(table.ToString()).Attribute("name").Value;
            //XElement xE = XElement.Parse(table.ToString());
            //foreach (XElement e in xE.Elements())
            foreach (XNode field in xdoc.Descendants("table").Nodes())
            {
                fieldName = XElement.Parse(field.ToString()).Attribute("name").Value;
                type = XElement.Parse(field.ToString()).Attribute("type").Value;
                size = XElement.Parse(field.ToString()).Attribute("size").Value;
                identity = XElement.Parse(field.ToString()).Attribute("identity").Value;
                primarykey = XElement.Parse(field.ToString()).Attribute("primarykey").Value;
                description = XElement.Parse(field.ToString()).Attribute("description").Value;
                reference = XElement.Parse(field.ToString()).Attribute("reference").Value;

                if (identity == "true") identity = "identity";
                if (primarykey == "true") primarykey = "primary key";

                if (isChar(type))
                {
                    fields += string.Format(fieldCharTemplate, fieldName, type, size);
                }
                else
                {
                    fields += string.Format(fieldNonCharTemplate, fieldName, type, identity,primarykey);
                }
                //var y = x.Element("type");
            }
            sql = string.Format(tableTemplate, tableName, fields);
            Response.Write(sql);
        }

3 个答案:

答案 0 :(得分:1)

这是问题所在:

foreach (XNode field in xdoc.Descendants("table").Nodes())

正在寻找所有 table元素下的所有节点。你不希望这样。

您已经 将您正在查看的表格XElement - 所以请使用它。它要求您的table变量是XElement而不仅仅是XNode,但这正是您真正想要的......而且这意味着您无需重新分析它以获得表名。我会把你的代码写成:

foreach (XElement table in xdoc.Root.Elements("table"))
{
    string tableName = (string) table.Attribute("name");
    StringBuilder fields = new StringBuilder();
    foreach (XElement field in table.Elements("field"))
    {
        string fieldName = (string) field.Attribute("name");
        string type = (string) field.Attribute("type");
        // Consider casting to int instead...
        string size = (string) field.Attribute("size");
        bool identity = (bool) field.Attribute("identity");
        bool primaryKey = (bool) field.Attribute("primarykey");
        string description = (string) field.Attribute("description");
        string reference = (string) field.Attribute("reference");
        // Append to fields here
    }
}

请注意,当您已有元素时,获取属性的难易程度。在绝大多数情况下,您确实不需要执行多个解析操作。另请注意我如何使用bool转换为primarykeyidentity。同样,这比手动测试字符串更清晰。

答案 1 :(得分:1)

这是解析xml的正确方法。表和字段是元素,因此将它们作为元素:

   // instead xdoc.Descendants("database").Nodes()
   xdoc.Descendants("table") // returns all table elements

获取元素或属性值时也使用强制转换。如果找不到节点,它将不会抛出异常,如果您需要解析为bool,整数等,它将简化您的代码:

XDocument xdoc = XDocument.Load("d:\\tables.xml");
foreach (XElement table in xdoc.Root.Elements("table"))
{
    tableName = (string)table.Attribute("name");

    foreach (XElement field in table.Elements("field"))
    {
        fieldName = (string)field.Attribute("name");
        type = (string)field.Attribute("type");
        size = (int)field.Attribute("size"); // that will be an integer
        identity = (bool)field.Attribute("identity"); // boolean
        primarykey = (bool)field.Attribute("primarykey"); // boolean
        description = (string)field.Attribute("description");
        reference = (string)field.Attribute("reference");
        // ...
    }

}

我建议你阅读Querying XML Trees篇文章。

答案 2 :(得分:0)

使用XElement而不是XNode。