C#XML在单个标记内对同一类型的多个对象进行序列化

时间:2012-06-15 12:48:53

标签: c# xml xml-serialization

我有以下XML,我想使用xml序列化重现:

<Room>
<!-- One light-->  
<light Type="Incadenscent" fin="QS f" ItemType="something "/>
<!-- Unlimited Tables -->
<table Type="BR" Id="10"/>
<table Type="BL" Id="21"/>
<table Type="BR" Id="22"/>
<table Type="GR" Id="35"/>
<table Type="BR" Id="18"/>
<table Type="RE" Id="55"/>
</Room>

以下是我的对象类型:

public class Table
{
    [XmlAttribute("type")]
    public string Type
    {
        get; set;
    }

    [XmlAttribute("Id")]
    public String Id
    {
        get; set;
    }

}

public class Light
{

    [XmlAttribute("type")]
    public string Type
    {
        get; set;
    }

    [XmlAttribute("fin")]
    public string FIN
    {
        get; set;
    }

    [XmlAttribute("ItemType")]
    public string ItemType
    {
        get; set;
    }
 }

public class Room{

      public Table Table
    {
        get; set;
    }

    public Light Light
    {
        get; set;
    }

  }

 public  class Program
{
    static void Main(string[] args)
    {

        List<Room> list = new List<Room>
        {
            new Room
            {

                Light = new Light{ Type="Incadenscent",  fin="QS", ItemType="something"},
                Table = new Table{Type="Metal", Id="10"}
                //error here when I try to add a new table object
                Table = new Table{Type="Wood", Id="13"}
            }
           } ;     
         SerializeToXML(list);

    }
    static public void SerializeToXML(List<Room> sample) 
    {
        XmlSerializer serializer = new XmlSerializer(typeof(List<Room>)););
        TextWriter textWriter = new StreamWriter(@"C:\assets.xml");
        serializer.Serialize(textWriter, sample);
        textWriter.Close();

    }
}

当我尝试在Room对象中实例化另一个表对象时,我得到一个错误(特别是对象的重复)。我做错了什么?

例如:

                **Table = new Table{Type="Wood", Id="13"}**

如何在房间列表中实例化另一个表对象而不会出现重复错误

2 个答案:

答案 0 :(得分:2)

有一个简单的解决方案:

public class Room
{
     [XmlElement("light")]
     public Light Light { get; set; }
     [XmlElement("table")]
     public List<Table> Tables { get; set; }
}

初始化如@ HackedByChinese的回答所述。

将List声明为[XmlElement],然后它不会序列化&lt; tables&gt;元素,xml看起来就像你想要的那样。

答案 1 :(得分:0)

您的XML与班级不匹配。 Room声明它包含一个Light和一个Table,其中XML有多个Tables

Room应该更像:

public class Room
{
     public Light Light { get; set; }
     public List<Table> Tables { get; set; }
}

并创建如下对象:

    new Room
    {

        Light = new Light{ Type="Incadenscent",  fin="QS", ItemType="something"},
        Tables = new List<Table>{ new Table{Type="Metal", Id="10"},
                                  new Table{Type="Wood", Id="13"} }
    }

但是,您仍然会遇到反序列化问题。 XmlSerializer希望XML看起来更像:

<Room>
    <light Type="Incadenscent" fin="QS f" ItemType="something "/>
    <tables>
       <table Type="BR" Id="10"/>
       <table Type="BL" Id="21"/>
       <table Type="BR" Id="22"/>
       <table Type="GR" Id="35"/>
       <table Type="BR" Id="18"/>
       <table Type="RE" Id="55"/>
     </tables>
</Room>

但是,如果生成的XML 必须看起来与您在示例中指定的方式相同,则需要Table上的implement IXmlSerializable,并使用XmlReaderXmlWriter手动反序列化和序列化。