我有一个完整的构建对象列表,我想将它序列化为 XML 文件。基本的序列化工作正常,但是将值转换为属性以获得更好的可读性,除了 int 值之外的所有值都奇怪地失败了。
这是我正在使用的应该序列化的建筑类:
public class building
{
[XmlAttribute]
public string strName { set; get; } //name
[XmlAttribute]
public int intCount { set; get; } //count of building
[XmlAttribute]
public int intCost { set; get; } //running cost of building
[XmlAttribute]
public string strProd { set; get; } //product
[XmlAttribute)]
public string strRes1 { set; get; } //first ressource required
[XmlAttribute]
public string strRes2 { set; get; } //second ressource required
[XmlAttribute]
public int intTime { set; get; } //time to build in seconds
}
如果我省略 [XMLAttribute] 标签,则 XML 文件 outputtet 如下:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfBuilding xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<building>
<strName>Holzfäller</strName>
<strKind>Produktion</strKind>
<intCost>2</intCost>
<strProd>Holz</strProd>
<strRes1 />
<strRes2 />
<intTime>105</intTime>
</building>
据说很好,只是很难获得文件中超过 50 座建筑物的概述。使用上述代码创建的 XML 文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfBuilding xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<building intCount="0" intCost="0" intTime="0" />
<building intCount="0" intCost="0" intTime="0" />
如您所见,仅添加了 int 值,甚至这些值也是 FALSE。所有值都设置为零。奇怪的是,如果我在创建列表后更新程序中的一个值,那么更改也会反映在 XML 中。只是基本值似乎被忽略/更改为零。
编辑:我也尝试像这样设置 DataType:
[XmlAttribute(DataType = "string")]
但这也只会使字符串变得噗噗而根本不显示。
有点迷失了这一点。如果我只是将 Attribute 的东西排除在外,那么一切都可以正常工作,所以我至少可以确定我的其余代码不会引起任何问题。但是为什么 XMLSerializer 会忽略作为字符串的对象属性并重置所有 int 值呢?我怎样才能改变这个?
抱歉,如果其他地方有人问过这个问题,我找不到合适的词来让谷歌解决我的问题。主要是因为我不明白这里发生了什么,也不知道从哪里开始。我找到的文档只是显示了我在做什么,声称它会起作用。但这并不明显:-(