这是我在C#中反序列化的代码:
private void button1_Click(object sender, EventArgs e)
{
LandXML myObject;
XmlSerializer mySerializer =
new XmlSerializer(typeof(LandXML));
FileStream myFileStream =
new FileStream("Nova 6.xml", FileMode.Open);
myObject = (LandXML)
mySerializer.Deserialize(myFileStream);
}
我已经使用Visual Studio的工具xsd.exe从链接http://www.landxml.org/schema/LandXML-1.2/LandXML-1.2.xsd生成了类。我有一些基于LandXML Schema的通用文件(XSD和该XML文件在http://www.utilities-online.info/xsdvalidation/#.VtBcNeaT6YA上进行了兼容性检查,并且它们兼容)。关键是我的代码永远不会超越:
XmlSerializer mySerializer =
new XmlSerializer(typeof(LandXML));
我得到一个错误(这只是错误跟踪的一部分)
我是编程新手,但我认为这部分至关重要:
有人可以帮忙解析并正确创建此类吗?可以在以下位置找到用于测试的样本XML文件:
http://landxml.org/schema/LandXML-1.1/samples/TopoCAD/Alignments%20and%20length%20table.xml
最佳答案
按照您的步骤,我创建了这些类,并将不规则线类与Boundary类进行了比较,因为这两个类都只能选择2个项目PntList2d/3d。
对于不规则线
[System.Xml.Serialization.XmlElementAttribute("PntList2D", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("PntList3D", typeof(string))]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
public double Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType ItemElementName {
get {
return this.itemElementNameField;
}
set {
this.itemElementNameField = value;
}
}
和边界
[System.Xml.Serialization.XmlElementAttribute("PntList2D", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("PntList3D", typeof(string))]
public object Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}
我相信您的问题是“不规则的行项目”字段是 double 型,而“项目”的返回类型也是 double 型。
将两者都更改为对象将消除错误
但是您有更多错误...
请注意,边界没有
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
它也没有
private ItemChoiceType itemElementNameField;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType ItemElementName {
get {
return this.itemElementNameField;
}
set {
this.itemElementNameField = value;
}
}
您还需要在几个不同的区域中添加它们(它将告诉您在哪里)。
您认为错误很关键是正确的。您需要进行更改的每个位置都将在这些嵌套内部异常的底部。继续努力,可能只有几个错误,这些错误只会在您消除之前的错误后才会出现。 Apparently xsd.exe makes a few mistakes with choices
关于c# - 在C#中反序列化XML时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35658403/