如何二进制序列化程序自定义类

本文关键字:自定义 程序 序列化 二进制 | 更新日期: 2023-09-27 17:57:01

我有这个自定义类:

public class MyClass
{ 
    private byte byteValue;
    private int intValue;
    private MyClass myClass1= null;
    private MyClass myClass2 = null;
}

显然我也有构造函数和获取/设置方法。

在我的主窗体中,我初始化了很多MyClass对象(请注意,MyClass对象中我引用了其他 2 个 MyClass 对象)。初始化后,我遍历第一个MyClass项,例如调用它"root"。因此,例如,我执行以下操作:

MyClass myClassTest = root.getMyClass1();
MyClass myClassTest2 = myClassTest.getMyClass1();

等等。

不,我想存储在二进制文件中,所有MyClass对象都实例化,以便在软件重新启动后再次获取它们。

完全不知道该怎么做,有人可以帮我吗?谢谢。

如何二进制序列化程序自定义类

首先在类声明之前添加属性 [Serializable]。有关属性的更多信息,请访问:https://msdn.microsoft.com/en-us/library/z0w1kczw.aspx

[Serializable]
public class MyClass
{ 
    private byte byteValue;
    private int intValue;
    private MyClass myClass1= null;
    private MyClass myClass2 = null;
}

注意:所有类成员也必须是可序列化的。若要将对象序列化为二进制,可以使用以下代码示例:

using (Stream stream = File.Open(serializationPath, FileMode.Create))
        {
            var binaryFormatter = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
            binaryFormatter.Serialize(stream, objectToSerialize);
            stream.Close();
        }

对于从二进制反序列化:

using (Stream stream = File.Open(serializationFile, FileMode.Open))
        {
            var binaryFormatter = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
            deserializedObject = (MyClass)binaryFormatter.Deserialize(stream);
        }