C#:为什么实现Serializable的对象不会';无法序列化
本文关键字:序列化 为什么 实现 Serializable 对象 | 更新日期: 2023-09-27 18:20:51
我正在运行一个桌面应用程序,当我到达这一行时:
serializer.Serialize(new StringWriter(sb), value);
它抛出以下错误:
There was an error generating the XML document.
这是代码:
public static string Serialize(object value)
{
var serializer = new XmlSerializer(value.GetType());
var sb = new StringBuilder();
serializer.Serialize(new StringWriter(sb), value);
return sb.ToString();
}
当我调试时,我在观察部分看到了这一点:
value.GetType().IsSerializable true bool
我在声明值的类之前设置了这个
[Serializable]
提前谢谢。
异常详细信息
System.InvalidOperationException was unhandled by user code
Message="There was an error generating the XML document."
Source="System.Xml"
StackTrace:
at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o, XmlSerializerNamespaces namespaces)
at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o)
at Pacer.PIA.UI.WindowsForms.Controls.Utility.Serialize(Object value) in E:'Projects'Indexing'Main'Source'Pacer.PIA'Source'Pacer.PIA.UI.WindowsForms'Controls'Utility.cs:line 55
at Pacer.PIA.UI.WindowsForms.Controller.MainForm.ActionLoad..ctor(Int32[] index, Object objValue) in E:'Projects'Indexing'Main'Source'Pacer.PIA'Source'Pacer.PIA.UI.WindowsForms'Controller'MainForm'ActionAdd.cs:line 37
at Pacer.PIA.UI.WindowsForms.MainForm.SearchLoadByLoadNumber(String loadNumber) in E:'Projects'Indexing'Main'Source'Pacer.PIA'Source'Pacer.PIA.UI.WindowsForms'Forms'MainForm.cs:line 3530
at Pacer.PIA.UI.WindowsForms.MainForm.rmedtLoadNumber_KeyPress(Object sender, KeyPressEventArgs e) in E:'Projects'Indexing'Main'Source'Pacer.PIA'Source'Pacer.PIA.UI.WindowsForms'Forms'MainForm.cs:line 1244
at Telerik.WinControls.RadItem.OnKeyPress(KeyPressEventArgs e)
at Telerik.WinControls.UI.RadTextBoxElement.textBoxItem_KeyPress(Object sender, KeyPressEventArgs e)
at Telerik.WinControls.RadItem.OnKeyPress(KeyPressEventArgs e)
at Telerik.WinControls.UI.RadTextBoxItem.TextBoxControl_KeyPress(Object sender, KeyPressEventArgs e)
at System.Windows.Forms.Control.OnKeyPress(KeyPressEventArgs e)
at Telerik.WinControls.UI.RadMaskTextBox.OnKeyPress(KeyPressEventArgs e)
at System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
at System.Windows.Forms.Control.ProcessKeyMessage(Message& m)
at System.Windows.Forms.Control.WmKeyChar(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.TextBoxBase.WndProc(Message& m)
at System.Windows.Forms.TextBox.WndProc(Message& m)
at Telerik.WinControls.UI.HostedTextBoxBase.WndProc(Message& message)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
InnerException: System.InvalidOperationException
Message="The type System.Drawing.Bitmap was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically."
Source="niumy1xe"
StackTrace:
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write4_Image(String n, String ns, Image o, Boolean isNullable, Boolean needType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write5_BEDocument(String n, String ns, BEDocument o, Boolean isNullable, Boolean needType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write6_BERequirement(String n, String ns, BERequirement o, Boolean isNullable, Boolean needType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write8_BEMove(String n, String ns, BEMove o, Boolean isNullable, Boolean needType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write9_BELoad(String n, String ns, BELoad o, Boolean isNullable, Boolean needType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriterBELoadCollection.Write10_ArrayOfBELoad(Object o)
InnerException:
类别:
[Serializable]
public class BELoadCollection : List<BELoad>, ICloneable
{
public BELoad FindByLoadId(string loadId)
{
return this.Find(load => load.LoadId.Equals(loadId));
}
public bool ExistsByLoadId(string loadId)
{
return this.Exists(load => load.LoadId.Equals(loadId));
}
public bool HasLoadsWithDocumentRequirementLinked
{
get
{
return this.Exists(load => load.HasDocumentsRequirementLinked);
}
}
public void PrepareRequirementsToIndex()
{
this.ForEach(load =>
{
load.PrepareRequirementsToIndex();
});
}
public bool HasLoadsReadyToIndex
{
get
{
return this.Exists(load => load.HasDocumentsRequirementReadyToIndex);
}
}
public BERequirementCollection GetRequirementsReadyToIndex()
{
BERequirementCollection beRequirementsReadyToIndex = new BERequirementCollection();
this.ForEach(load => beRequirementsReadyToIndex.AddRange(load.GetRequirementsReadyToIndex()));
return beRequirementsReadyToIndex;
}
#region ICloneable Members
object ICloneable.Clone()
{
return this.Clone();
}
public BELoadCollection Clone()
{
BELoadCollection BELoadCollectionClone = new BELoadCollection();
for (int i = 0; i <= this.Count - 1; i++)
BELoadCollectionClone.Add(this[i]);
return BELoadCollectionClone;
}
#endregion
}
这是BELoad(只是字段)
public class BELoad : BEMetaData, ICloneable
{
//Fields
private BEMoveCollection beMoveCollection;
public string LoadId { get; set; }
public string Description { get; set; }
public string DocumentType { get; set; }
public string Vendor { get; set; }
public string VendorCityState { get; set; }
public string State { get; set; }
public string EquipmentPrefix { get; set; }
public string EquipmentNumber { get; set; }
public string Driver { get; set; }
public string Shipper { get; set; }
public string ShipperCityState { get; set; }
public string BillTo { get; set; }
public string BillToCityState { get; set; }
public string Consignee { get; set; }
public string ConsigneeCityState { get; set; }
public string Stop { get; set; }
public string StopCityState { get; set; }
public string Container { get; set; }
}
堆栈中有一个提示:
InnerException: System.InvalidOperationException
Message="The type System.Drawing.Bitmap was not expected.
Use the XmlInclude or SoapInclude attribute to specify types
that are not known statically."
System.Drawing.Bitmap
不可Xml序列化,因此出现异常。也许另一种方法是使用XmlIgnoreAttribute
来忽略此属性,或者实现IXmlSerializable
并将图像序列化为ascii blob(如果您真的需要保存它的话)?
请参阅相关问题&answer将C#中的位图序列化为XML
由Conrad Frix在评论中贡献
Serializable
属性与XML序列化无关,它用于二进制序列化。用BinaryFormatter
可序列化的对象并不总是用XmlSerializer
可序列化的。。。
对于XMLSerializer,在要序列化的类中必须有一个无参数构造函数。
请注意,BinaryFormatter和DataContractSerializer不需要这样做——它们可以从以太中创建一个未初始化的对象,并在反序列化过程中对其进行初始化。