1

我有以下想要使用 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"}**

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

4

2 回答 2

4

有一个简单的解决方案:

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

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

将 List 声明为 [XmlElement],则它不会序列化 <tables> 元素,并且 xml 看起来与您想要的完全一样。

于 2012-06-15T14:08:01.720 回答
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必须看起来像您在示例中指定的方式,您将需要实现IXmlSerializableon Table,并使用XmlReaderandXmlWriter手动反序列化和序列化(分别)。

于 2012-06-15T13:16:01.523 回答