gpt4 book ai didi

c# - 将复杂的 XML 反序列化为 C# 对象

转载 作者:太空宇宙 更新时间:2023-11-03 22:03:41 25 4
gpt4 key购买 nike

我有这种格式的 XML -

<Areas>
<Area>
<Property Name="Test11">a1</Property>
<Property Name="Test12">a2</Property>
<Property Name="Test13">a3</Property>
<Property Name="Test14">a4</Property>
<Property Name="Test15">a5</Property>
</Area>
<Area>
<Property Name="Test21">b1</Property>
<Property Name="Test22">b2</Property>
<Property Name="Test23">b3</Property>
<Property Name="Test24">b4</Property>
<Property Name="Test25">b5</Property>
</Area>
</Areas>

我使用 Microsoft 提供的 xsd.exe 生成了类 -

[Serializable()]
public partial class Areas
{
[XmlArrayItem("Property", typeof(AreasAreaProperty))]
public AreasAreaProperty[][] Area { get; set; }
}

[Serializable()]
public partial class AreasAreaProperty
{
[XmlAttribute()]
public string Name { get; set; }

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

反序列化代码是-

private void Deserialize()
{
XmlSerializer xs = new XmlSerializer(typeof(Areas));
FileStream fs = new FileStream("XMLFile1.xml", FileMode.Open);
XmlReader xr = new XmlTextReader(fs);
Areas a = (Areas)xs.Deserialize(xr);
fs.Close();
}

但是在反序列化的时候,我得到了这个错误 -无法将类型“AreasAreaProperty[]”转换为“AreasAreaProperty”我在创建 XMLSerializer 对象时收到此错误。

如何解决这个问题??提前致谢..

最佳答案

我想我以前见过这个。 XSD.exe 并不完美,因此您需要稍微修改一下结果。在下面的代码中,在最后一行有 [][] 的地方,删除其中一个 [],使其成为“public AreasAreaProperty[] Area...”

[Serializable()]
public partial class Areas
{
[XmlArrayItem("Property", typeof(AreasAreaProperty))]
public AreasAreaProperty[][] Area { get; set; }

关于c# - 将复杂的 XML 反序列化为 C# 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9200204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com