无法反序列化xml文件

时间:2012-04-05 16:44:25

标签: c# xml list serialization xml-serialization

我有一个xml文件,如下所示,我正在尝试反序列化。

<info>
  <result resultCode="0000"><![CDATA[操作成功]]></result>
  <songlist>
    <song>
      <id>63672</id>
      <name><![CDATA[红玫瑰]]></name>
      <singer id="1620"><![CDATA[陈奕迅]]></singer>
      <album id="22056"><![CDATA[认了吧]]></album>
      <remark><![CDATA[]]></remark>
      <uploadinguser><![CDATA[]]></uploadinguser>
      <collectinguser><![CDATA[]]></collectinguser>
      <source>
        <link id="3441591" filesize="3842715" format="mp3"><![CDATA[http://space6.j.cn/olympic/edit/672/63672-3842715.mp3]]></link>
        <link id="3435011" filesize="3843133" format="mp3"><![CDATA[http://f8.wretch.yimg.com/satyedhome/32764/1165646407.mp3]]></link>
        <link id="3434519" filesize="3842715" format="mp3"><![CDATA[http://space0.j.cn/olympic/edit/672/63672-3842715.mp3]]></link>
      </source>
    </song>
    <song>
      <id>67228</id>
      <name><![CDATA[光荣]]></name>
      <singer id="106"><![CDATA[BOBO]]></singer>
      <album id="22523"><![CDATA[光荣]]></album>
      <remark><![CDATA[]]></remark>
      <uploadinguser><![CDATA[]]></uploadinguser>
      <collectinguser><![CDATA[]]></collectinguser>
      <source>
        <link id="3437626" filesize="5106906" format="mp3"><![CDATA[http://blog.heinekenf1.net/music/gr.mp3]]></link>
        <link id="3441621" filesize="3394663" format="mp3"><![CDATA[http://space6.j.cn/olympic/edit/228/67228-3394663.mp3]]></link>
        <link id="3090938" filesize="3395499" format="mp3"><![CDATA[http://space5.j.cn/olympic/convert/228/67228-3395499.mp3]]></link>
      </source>
    </song>
    <song>...</song>
    <song>...</song>
    <song>...</song>
    <song>...</song>
    <song>...</song>
    <song>...</song>
  </songlist>
</info>

目前这就是我所拥有的模型:

[XmlRoot("info")]
public class Response
{
    [XmlElement("result")]
    public Result Results { get; set; }

    [XmlArray("songlist")]
    [XmlArrayItem("song", typeof(Song))]
    Song[] SongList { get; set; }
}
public class Result
{
    [XmlAttribute("resultCode")]
    public int ResultCode { get; set; }
}
public class Song
{
    [XmlElement("name")]
    public string Name { get; set; }

    [XmlElement("singer")]
    public string Artist { get; set; }

    [XmlElement("album")]
    public string Album { get; set; }

    [XmlArray("source")]
    [XmlArrayItem("link", typeof(Link))]
    public Link[] Sources { get; set; }
}
public class Link
{
    [XmlAttribute("filesize")]
    public int FileSize { get; set; }
    [XmlAttribute("format")]
    public string Format { get; set; }
    [XmlText]
    public string URI { get; set; }
}

但是当我尝试使用下面的代码进行反序列化时,它没有被正确解析,即我没有看到resultCode和歌曲列表(尽管没有错误)。

XmlSerializer s = new XmlSerializer(typeof(Response), new XmlRootAttribute("info"));
Response response = (Response)s.Deserialize(data.CreateReader());

任何提示?

1 个答案:

答案 0 :(得分:4)

首先确保所有属性都是公共的,因为序列化只接受公共属性。您的歌曲[]没有访问修饰符,默认为私有。

使用此作为开始反序列化xml。为了让它发挥作用,我做了一些改变。例如。使用XmlElement而不是XmlArray创建元素SongList。

[XmlRoot("info")]
public class Response
{
    [XmlElement("result")]
    public Result Result { get; set; }

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

public class Result
{
    [XmlAttribute("resultCode")]
    public int ResultCode { get; set; }

    [XmlText]
    public string Value { get; set; }
}

public class SongList
{
    [XmlElement("song")]
    public Song[] Songs { get; set; }
}

public class Song
{
    [XmlElement("id")]
    public string Id { get; set; }
}

希望有所帮助!

相关问题