欢迎来到天天文库
浏览记录
ID:37708647
大小:198.50 KB
页数:12页
时间:2019-05-29
《C#序列化详解》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、.net的运行时环境用来支持用户定义类型的流化的机制。它是将对象实例的状态存储到存储媒体的过程。在此过程中,先将对象的公共字段和私有字段以及类的名称(包括类所在的程序集)转换为字节流,然后再把字节流写入数据流。在随后对对象进行反序列化时,将创建出与原对象完全相同的副本。 序列化的目的: 1、以某种存储形式使自定义对象持久化; 2、将对象从一个地方传递到另一个地方。 实质上序列化机制是将类的值转化为一个一般的(即连续的)字节流,然后就可以将该流写到磁盘文件或任何其他流化目标上。而要想实际的写出这个流,就要使用那些实现了IFormatter接口的类里的Serialize和Deserialize
2、方法。 在.net框架里提供了这样两个类: 一、BinaryFormatter BinaryFormatter使用二进制格式化程序进行序列化。您只需创建一个要使用的流和格式化程序的实例,然后调用格式化程序的Serialize方法。流和要序列化的对象实例作为参数提供给此调用。类中的所有成员变量(甚至标记为private的变量)都将被序列化。 首先我们创建一个类:[Serializable]publicclassMyObject{publicintn1=0;publicintn2=0;publicStringstr=null;} Serializable属性用来明确表示该类可以被序列化。同样的
3、,我们可以用NonSerializable属性用来明确表示类不能被序列化。 接着我们创建一个该类的实例,然后序列化,并存到文件里持久:MyObjectobj=newMyObject();obj.n1=1;obj.n2=24;obj.str="一些字符串";IFormatterformatter=newBinaryFormatter();Streamstream=newFileStream("MyFile.bin",FileMode.Create,FileAccess.Write,FileShare.None);formatter.Serialize(stream,obj);stream.C
4、lose(); 而将对象还原到它以前的状态也非常容易。首先,创建格式化程序和流以进行读取,然后让格式化程序对对象进行反序列化。IFormatterformatter=newBinaryFormatter();Streamstream=newFileStream("MyFile.bin",FileMode.Open,FileAccess.Read,FileShare.Read);MyObjectobj=(MyObject)formatter.Deserialize(fromStream);stream.Close();//下面是证明Console.WriteLine("n1:{0}",obj
5、.n1);Console.WriteLine("n2:{0}",obj.n2);Console.WriteLine("str:{0}",obj.str);二SoapFormatter 前面我们用BinaryFormatter以二进制格式来序列化。很容易的我们就能把前面的例子改为用SoapFormatter的,这样将以xml格式化,因此能有更好的可移植性。所要做的更改只是将以上代码中的格式化程序换成SoapFormatter,而Serialize和Deserialize调用不变。对于上面使用的示例,该格式化程序将生成以下结果。6、//www.w3.org/2001/XMLSchema-instancexmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:SOAP-ENC=http://schemas.xmlsoap.org/soap/encoding/xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/SOAP-ENV:encodingStyle="http://schemas.microsoft.com/soap/encoding/clr/1.0http://schemas.xmlsoap.org/soap/7、encoding/"xmlns:a1="http://schemas.microsoft.com/clr/assem/ToFile">124一些字符串 在这里需要注意的是
6、//www.w3.org/2001/XMLSchema-instancexmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:SOAP-ENC=http://schemas.xmlsoap.org/soap/encoding/xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/SOAP-ENV:encodingStyle="http://schemas.microsoft.com/soap/encoding/clr/1.0http://schemas.xmlsoap.org/soap/
7、encoding/"xmlns:a1="http://schemas.microsoft.com/clr/assem/ToFile">124一些字符串 在这里需要注意的是
此文档下载收益归作者所有