我正在尝试使用XmlSerializer(c#)反序列化XML,如下所示:
<strokes>
<stroke timestamp="1405376883559">
<coord x="58.425" y="43.2375" d="0.0"/>
<coord x="58.6125" y="42.825" d="13.0"/>
<coord x="58.7625" y="42.7125" d="26.0"/>
<coord x="58.875" y="42.7125" d="40.0"/>
</stroke>
<stroke timestamp="1405376884991">
<coord x="67.95" y="40.6125" d="0.0"/>
<coord x="68.025" y="40.5" d="13.0"/>
<coord x="68.0625" y="40.3875" d="26.0"/>
</stroke>
<stroke timestamp="1405376885557">
<coord x="70.425" y="41.85" d="0.0"/>
<coord x="70.35" y="42.0" d="13.0"/>
<coord x="70.35" y="42.075" d="26.0"/>
<coord x="70.4625" y="42.1125" d="40.0"/>
<coord x="70.6125" y="42.15" d="53.0"/>
</stroke>
<stroke timestamp="1405376886058">
<coord x="70.6875" y="44.175" d="0.0"/>
<coord x="70.575" y="44.25" d="13.0"/>
</stroke>
<stroke timestamp="1405376886689">
<coord x="78.375" y="42.7125" d="0.0"/>
<coord x="78.1125" y="42.9" d="13.0"/>
<coord x="77.8125" y="43.0875" d="26.0"/>
<coord x="77.475" y="43.2375" d="40.0"/>
</stroke>
</stroke>
</strokes>
我错误的课程看起来像这样
[XmlRoot("strokes", IsNullable = false)]
public class Strokes
{
private List<Stroke> strokes;
}
public class Stroke
{
public string timestamp;
[XmlArrayAttribute("stroke")]
List<coord> stroke;
}
[Serializable]
public class coord
{
[XmlAttribute]
public string x;
[XmlAttribute]
public string y;
[XmlAttribute]
public string d;
}
我认为我缺少一些类属性来描述描边对象有一个数组和时间戳。我在xml节点“stroke”
上触发了一个“unknownNode”如何构建我的c#对象以适合这个xml?
答案 0 :(得分:1)
这应该可以解决问题:
[XmlRoot("strokes", IsNullable = false)]
public class Strokes
{
[XmlElement("stroke")]
public List<Stroke> strokes;
}
public class Stroke
{
[XmlAttribute]
public string timestamp;
[XmlElement("coord")]
public List<coord> coords;
}
[Serializable]
public class coord
{
[XmlAttribute]
public string x;
[XmlAttribute]
public string y;
[XmlAttribute]
public string d;
}
他们的关键是让您想要的所有内容(de)序列化public
,并在XmlElement
列表中使用XmlArrayAttribute
代替coord
。
Mikael Svenson's answer similar question对{{3}}提供了非常有用的提示:
我是通过获取你的xml,从中生成一个模式(xsd)来完成的 视觉工作室。然后在架构上运行xsd.exe以生成类。 (还有一些小编辑)
如果您对发布的XML执行此操作,则您将获得coord
元素列表的以下工作版本,例如:
[System.Xml.Serialization.XmlElementAttribute("coord")]
public strokesStrokeCoord[] coord {
get {
return this.coordField;
}
set {
this.coordField = value;
}
}