Xml Serilization嵌套类

时间:2015-09-22 21:44:26

标签: c# xml xml-serialization

我很抱歉,但我检查了每一个例子我都没有得到任何帮助。 我应该是xml结构

<?xml version="1.0"?>
<Project ModelVersion="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Models>
    <Model>
      <Id>987214</Id>
      <prop1></prop1>
      <prop2></prop2>
      <Sections>
        <Section>
          <id>3548A</id>
          <prop1>true</prop1>
          <BaseSection xsi:type="Multiple">
            <prop1>Ijk</prop1>
            <prop2>Lmn</prop2>
          </BaseSection>
        </Section>
        <Section>
          <id>3548B</id>
          <prop1>true</prop1>
          <BaseSection xsi:type="Single">
            <prop1>Xyz</prop1>
            <prop2>Abc</prop2>
          </BaseSection>
        </Section>
      </Sections>
    </Model>
  </Models>
</Project>

这是我的类包含其他类的对象,为了简单起见,我从类和xml中删除了很多对象

[XmlRoot("Project")]
[Serializable()]
public class Project
{
    [XmlElement("Model")]
    public Model Model { get; set; }

    [XmlElement("Structure")]
    public Structure Structure { get; set; }

    //...more objects
}

这是我的Project类

Project settings = null;
Stream stream = File.Open(folderPath + filename, FileMode.Open);
XmlSerializer xs = new XmlSerializer(typeof(Project));
settings = (Project)xs.Deserialize(stream);
stream.Close();

现在我的问题是在执行这部分代码之后,设置确实包含“模型”但它不包含模型细节。模型是模型列表,两者都标记为[Serilizable()],Sections是Section的列表,两者都标记为[Serilizable()] ..

我已经度过了一段美好的时光,因为我认为这不会是30分钟的工作,但没有运气..

任何帮助都将受到高度赞赏

提前致谢

1 个答案:

答案 0 :(得分:1)

在您的XML中,ModelsModel的数组,但这在Project课程中未得到正确反映。你需要改变

[XmlElement("Model")]
public Model Model { get; set; }

[XmlArray("Models")]
public List<Model> Models { get; set; }

这将告诉序列化器将Models视为数组,这是它在输入中的表示方式。 Sections也是如此:

[Serializable]
public class Model
{
    [XmlElement("Id")]
    public int Id { get; set; }

    [XmlArray("Sections")]
    public List<Section> Sections { get; set; }
}