欢迎来到天天文库
浏览记录
ID:45566067
大小:301.57 KB
页数:15页
时间:2019-11-14
《net中对象序列化技术浅谈》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、yy序列化是将对象转换为容易传输的格式的过程。例如,对以序列化一个对象,然后使用HTTP通过Internet在客户端和服务器之间传输该对象。反之,反序列化根据流重新构造对象。ffi.net中有提供了几种序列化的方式:二进制序列化XML序列化SOAP序列化二进制序列化所谓二进制序列化,指的是对彖序列化之后是二进制形式的。二进制序列化是通过BinaryFormatter类来实现的,这个类位于System.Runtime.Serialization.Formatters.Binary命名空间下。XML序列化所谓XML序
2、列化,是指对象序列化之后的结果是XML形式的。保存XML序列化是通过XmISerializer类来实现的,这个类位于System.Xml.Serialization命名空间下。SOAP序列化所谓SOAP序列化是指对彖序列化之后的结果符合SOAP协议,也就是可以通过SOAP协议传输(不知道SOAP协议?百度一下吧)。SOAP序列化是通过SoapFormatter类來实现的,这个类位丁System.Runtime.Serialization.Formatters.Soap命名空间下,并且需要注意需要手动添加对这个命名
3、空间的引用,如下图所示:组件名称Systwm.Runtime・Serialization版本3.0.0.0Sy£tmm・Runlimq.$eriali工ation.£Qttws.So翎2.0.0.0System.SecuritySystem.ServiceModelSystem.ServiceModel.WebSystem.ServiceProcessSystem.SpeechSystmm.TransactionsSystem.WebSystem.Web.ExtensionsSystem.Web・Extensio
4、ns.DesignSystem.Web.MobileSystem.Web.RegularExpress!onsSystem.Web.Servicesr»•hi*iT?2.0.0.03.0.0.03.5.0.02.0.0.03.0.0.02.0.0.02.0.0.03.5.0.03.5.0.02.0.0.02.0.0.02.0.0.0cccc尉V2.0V2oooooooooooo^>V2.V2.V2.V2.V2.V2.V2.V2.V2.V2.V2.V2.C取消确定下面编写一个类用于序列化和反序列化,这个类的代码如下
5、:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceMySerializeDemo{[Serializable]//////要序列化的对象/〃作者:周公///编写时间:2009-03-10///publicclassMyObject{//[NonSerialized]privatestringname;privateDateTimebirthday;privatestringhomePl
6、ace;//////出生地///publicstringHomePlace{get{returnhomePlace;}set{homePlace=value;}}//////生Fl///publicDateTimeBirthday{get{returnbirthday;}set{birthday=value;}}//////姓名///publicstringName{get{returnname;}s
7、et{name=value;}}//////年龄///publicintAge{get{returnDateTime.Now.Year-birthday.Year;}}//////override了ToString()方法//////publicoverridestringToString()59.returnstring.Format(n姓名:{0}住日:{1},出生地:{2},年龄:{3}H,nam
8、e,birthday,homePlace,Age);60.}61.62.}63.}usingSystem;▲usingSystem・Collections・Generic;usingSystem・Text;—namespaceMySerializeDemof[Serializable]//////要序列化的对彖///作者:周公///编写时间:2009-0
此文档下载收益归作者所有