说我有几个这样的基本对象:
[Serializable]
public class Base
{
public string Property1 { get; set; }
public int Property2 { get; set; }
}
[Serializable]
public class Sub: Base
{
public List<string> Property3 { get; set; }
public Sub():base()
{
Property3 = new List<string>();
}
}
我将它们序列化为:
Sub s = new Sub {Property1 = "subtest", Property2 = 1000};
s.Property3.Add("item 1");
s.Property3.Add("item 2");
XmlSerializer sFormater = new XmlSerializer(typeof(Sub));
using (FileStream fStream = new FileStream("SubData.xml",
FileMode.Create, FileAccess.Write, FileShare.None))
{
sFormater.Serialize(fStream, s);
}
如何反序列化它们,以便我找回正确的类?
就像在,我想要这样的东西
XmlSerializer bFormater = new XmlSerializer(typeof (Base));
Base newBase;
using (FileStream fStream = new FileStream("BaseData.xml",
FileMode.Open, FileAccess.Read, FileShare.Read))
{
newBase = (Base) bFormater.Deserialize(fStream);
}
除非我能够为从Base迁移的任何类传递XML文件,否则将创建正确的类。
我想我可以读取XML的根节点的名称并使用switch语句来创建正确的XmlSerializer,但我想知道是否有更简单的方法。
答案 0 :(得分:9)
您可以阅读XML文件的根节点,而不是使用switch语句,您可以像这样编写代码 -
Type yourType = Type.GetType("Your Type");
XmlSerializer xs = new XmlSerializer(yourType);
我认为除了阅读XML之外没有任何其他方法,因为如果您不知道类型,则无法做任何事情。
答案 1 :(得分:8)
使用基类上的[XmlInclude]
属性告诉XML序列化程序有关派生类的信息,以便它可以找出要创建的内容。您的上一个代码段应该可以正常工作。
答案 2 :(得分:0)
据我所知,没有简单的方法可以做到这一点。
我个人更喜欢更通用的解决方案(因为我必须在我的代码中序列化很多不同的类):保持类型名称与值一起序列化。
您可以查看此问题以获取一些详细信息: Serialise to XML and include the type of the serialised object