如何反序列化包含列表的数组?

问题描述 投票:1回答:4

我想反序列化包含一些东西和3列表的数组。除List之外,该程序工作正常。列表已创建,但它们不包含任何内容!

你能帮助我吗 ?

以下是xml文件的外观:

<blind>
  <folder>C:\Users\Michael\Desktop\BT 1 normal\Programme BT\</folder>
  <nombre_titres>25</nombre_titres>
  <numero></numero>
  <theme></theme>
  <heure_debut></heure_debut>
  <mdp>a</mdp>
  <lien></lien>
  <playlist>
    <extrait>
      <artiste>Abba</artiste>
      <titre>Take a chance on me</titre>
      <PointAT>1.25</PointAT>
      <PointA>0.5</PointA>
      <PointT>0.5</PointT>
      <JoueursAT>
        <joueurAT>Ahkayaqua</joueurAT>
        <joueurAT>Angelene</joueurAT>
      </JoueursAT>
      <JoueursA>
        <joueurA></joueurA>
      </JoueursA>
      <JoueursT>
        <joueurT></joueurT>
      </JoueursT>
    </extrait>
<extrait>
....
</extrait>
 </playlist>
</blind>

我的反序列化代码:

XElement xmle;
xmle = XElement.Load(_folder + "Blind.xml");
textBox1.Text = xmle.Element("numero").Value;
textBox4.Text = xmle.Element("theme").Value;
textBox3.Text = xmle.Element("heure_debut").Value;
textBox5.Text = xmle.Element("lien").Value;
textBox2.Text = xmle.Element("mdp").Value;                    
extraits = (from ex in xmle.Element("playlist").Elements("extrait")
            select new Extrait
                (ex.Element("artiste").Value,
                 ex.Element("titre").Value,
                 0,
                 0,
                 0,
                 (from jat in ex.Element("JoueursAT").Elements("JoueurAT")
                  select jat.Element("JoueurAT").Value).ToList(),
                 (from ja in ex.Element("JoueursA").Elements("JoueurA")
                  select ja.Element("JoueurA").Value).ToList(),
                 (from jt in ex.Element("JoueursT").Elements("JoueurT")
                  select jt.Element("JoueurT").Value).ToList())).ToArray();

这是我的班级:

public class Extrait
{
    private String _Artiste;
    private String _Titre;
    private double _PointA;
    private double _PointT;
    private double _PointAT;
    private List<String> _JoueurA;
    private List<String> _JoueurT;
    private List<String> _JoueurAT;

    public String Artiste
    {
        get { return _Artiste; }
        set { _Artiste = value; }
    }

    public String Titre
    {
        get { return _Titre; }
        set { _Titre = value; }
    }

    public Double PointA
    {
        get { return _PointA; }
        set { _PointA = value; }
    }

    public Double PointT
    {
        get { return _PointT; }
        set { _PointT = value; }
    }

    public Double PointAT
    {
        get { return _PointAT; }
        set { _PointAT = value; }
    }

    public List<String> JoueurA
    {
        get { return _JoueurA; }
        set { _JoueurA = value; }
    }

    public List<String> JoueurT
    {
        get { return _JoueurT; }
        set { _JoueurT = value; }
    }

    public List<String> JoueurAT
    {
        get { return _JoueurAT; }
        set { _JoueurAT = value; }
    }

    public Extrait(String Artiste, String Titre, Double PointA, Double PointT, Double PointAT, List<String> JoueurAT, List<String> JoueurA, List<String> JoueurT)
    {
        _Artiste = Artiste;
        _Titre = Titre;
        _PointA = PointA;
        _PointT = PointT;
        _PointAT = PointAT;
        _JoueurAT = JoueurAT;
        _JoueurA = JoueurA;
        _JoueurT = JoueurT;
    }
}

好吧,我尝试了很多可能性,但都没有效果!

c# xml linq-to-xml
4个回答
0
投票

如果这是你的实际xml,那么看看内部标签 - 它们以较低的字母开头。当您选择名称为<joueurAT>的元素时,您的xml具有.Elements("JoueurAT") - 节点名称区分大小写。

您的代码应如下所示:

extraits = (from ex in xmle.Element("playlist").Elements("extrait")
        select new Extrait
            (ex.Element("artiste").Value,
             ex.Element("titre").Value,
             0,
             0,
             0,
             (from jat in ex.Element("JoueursAT").Elements("joueurAT")
              select jat.Value).ToList(),
             (from ja in ex.Element("JoueursA").Elements("joueurA")
              select ja.Value).ToList(),
             (from jt in ex.Element("JoueursT").Elements("joueurT")
              select jt.Value).ToList())).ToArray();

0
投票

这应该解决它。基本上,默认行为是对列表使用两级嵌套(意味着它默认为[XmlArray]加上[XmlArrayItem];这里只有一级,所以你需要告诉它。

[XmlElement]
public List<String> JoueurA
{
    get { return _JoueurA; }
    set { _JoueurA = value; }
}
[XmlElement]
public List<String> JoueurT
{
    get { return _JoueurT; }
    set { _JoueurT = value; }
}
[XmlElement]
public List<String> JoueurAT
{
    get { return _JoueurAT; }
    set { _JoueurAT = value; }
}

顺便说一句,你可能会发现在这里使用像自动属性这样的东西更方便;常规属性和列表的示例:

public double PointAT {get;set;}
[XmlElement]
public List<string> JoueurA {get;} = new List<string>();

这比自己弄乱所有领域要方便得多。

您可能还想确保拥有一个公共无参数构造函数;坦率地说,我只是删除自定义构造函数(在这种情况下:免费提供一个公共无参数构造函数),但除此之外 - 我只是添加:

public Extrait() {}

0
投票

盲人班需要改变

   [XmlRoot("blind")]
    public class Blind
    {
        [XmlArray("playlist")]
        [XmlArrayItem("extrait")]
        public List<Extrait> extrait { get; set; }
    }
    public class Extrait
    {
    }

0
投票
(from jat in ex.Element("JoueursAT").Elements("JoueurAT")
 select jat.Element("JoueurAT").Value).ToList()

应该成为

(from jat in ex.Element("JoueursAT").Elements("joueurAT")
 select jat.Value).ToList()

我不确定C#的XML库在令牌名称方面是否区分大小写,但如果有疑问,最好安全地使用它。尽管已经实际上已经对它们进行了循环,你还尝试在进行选择时访问元素“joueurAT”,这样你就可以直接访问Value属性了。

而不是像你那样使用LINQ,你可以尝试扩展方法,这些方法往往更具可读性:

xmle.Element("playlist").Elements("extrait")
    .Select(ex => new Extrait
    {
        Artiste = ex.Element("artiste").Value,
        Titre = ex.Element("titre").Value,
        PointA = 0,
        PointT = 0,
        PointAT = 0,
        JoueurA = ex.Element("JoueursAT").Elements("joueurAT").Select(jat => jat.Value).ToList(),
        JoueurT = ex.Element("JoueursA").Elements("joueurA").Select(ja => ja.Value).ToList(),
        JoueurAT = ex.Element("JoueursT").Elements("joueurT").Select(jt => jt.Value).ToList()
    });
© www.soinside.com 2019 - 2024. All rights reserved.