久草最新视频-久草最新网址-久国产-久国产视频-天天插夜夜操-天天插一插

使用SoapFormatter、XmlSerializer進行串行化

文章由通州北大青鳥校區學術部丁老師提供:

1.使用SoapFormatter進行串行化
通州北大青鳥校區丁老師介紹,與上一篇講解的BinaryFormatter類似,我們只需要做一下簡單修改即可:
a.將using語句中的.Formatter.Binary改為.Formatter.Soap;
b.將所有的BinaryFormatter替換為SoapFormatter.
c.確保報存文件的擴展名為.xml
經過上面簡單改動,即可實現SoapFormatter的串行化,這時候產生的文件就是一個xml格式的文件。

2.使用XmlSerializer進行串行化
通州北大青鳥校區丁老師講解,關于格式化器,假設我們需要XML,但是不想要SOAP特有的額外信息,那么我們應該怎么辦呢?有兩中方案:編寫一個實現IFormatter接口的類,采用的方式類似于SoapFormatter類,但是沒有你不需要的信息;要么使用庫類XmlSerializer,這個類不使用Serializable屬性,但是它提供了類似的功能。

如果我們不想使用主流的串行化機制,而想使用XmlSeralizer進行串行化我們需要做一下修改:
a.添加System.Xml.Serialization命名空間。
b.Serializable和NoSerialized屬性將被忽略,而是使用XmlIgnore屬性,它的行為與NoSerialized類似。
c.XmlSeralizer要求類有個默認的構造器,這個條件可能已經滿足了。

下面看示例:
要序列化的類:
    
 using System;
 using System.Data;
 using System.Configuration;
 using System.Web;
 using System.Web.Security;
 using System.Web.UI;
 using System.Web.UI.WebControls;
 using System.Web.UI.WebControls.WebParts;
 using System.Web.UI.HtmlControls;
 using System.Xml.Serialization;
 [Serializable]
 public class Person
  {
     private string name;
     public string Name
      {
         get
          {
             return name;
         }
         set
          {
             name = value;
         }
     }
 (北京北大青鳥校區)
 
     public string Sex;
     public int Age = 31;
     public Course[] Courses;
 
     public Person()
      {
     }
     public Person(string Name)
      {
         name = Name;
         Sex = "男";
     }
 }
 [Serializable]
 public class Course
  {
     public string Name;
     [XmlIgnore]
     public string Description;
     public Course()
      {
     }
     public Course(string name, string description)
      {
         Name = name;
         Description = description;
     }
 } 
(北京北大青鳥校區

序列化和反序列化方法:
 public void XMLSerialize()
      {
         Person c = new Person("cyj");
         c.Courses = new Course[2];
         c.Courses[0] = new Course("英語", "交流工具");
         c.Courses[1] = new Course("數學","自然科學");
         XmlSerializer xs = new XmlSerializer(typeof(Person));
         Stream stream = new FileStream("c:\\cyj.XML",FileMode.Create,FileAccess.Write,FileShare.Read);
         xs.Serialize(stream,c);
         stream.Close();
     }
     public void XMLDeserialize()
      {
         XmlSerializer xs = new XmlSerializer(typeof(Person));
         Stream stream = new FileStream("C:\\cyj.XML",FileMode.Open,FileAccess.Read,FileShare.Read);
         Person p = xs.Deserialize(stream) as Person;
         Response.Write(p.Name);
         Response.Write(p.Age.ToString());
         Response.Write(p.Courses[0].Name);
         Response.Write(p.Courses[0].Description);
         Response.Write(p.Courses[1].Name);
         Response.Write(p.Courses[1].Description);
         stream.Close();
     }

北京北大青鳥校區:這里Course類的Description屬性值將始終為null,生成的xml文檔中也沒有該節點,如下:
 <?xml version="1.0"?>
 <Person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <Sex>男</Sex>
   <Age>31</Age>
   <Courses>
     <Course>
       <Name>英語</Name>
       <Description>交流工具</Description>
     </Course>
     <Course>
       <Name>數學</Name>
       <Description>自然科學</Description>
     </Course>
   </Courses>
   <Name>cyj</Name>
 </Person>
北京北大青鳥校區提供,未完待續

北大青鳥網上報名
北大青鳥招生簡章
主站蜘蛛池模板: 欧美综合成人| 午夜看片影院在线观看| 亚洲吊丝网| 香蕉国产人午夜视频在线观看| 日本高清专区一区二无线| 日韩 欧美 综合| 亚洲欧美日韩中文不卡| 日本波多野结衣字幕久久| 欧美亚洲国产精品久久| 四虎社区| 日本九九热| 欧美人妖系列ts| 日本欧洲95视频| 四虎影在线永久免费观看| 一级黄色在线播放| 日韩精品视频在线免费观看| 日本福利片国产午夜久久| 奇米影视久久| 视频国产免费| 日本久久不射| 欧美国产视频| 欧美成人精品久久精品| 五月婷婷六月合| 亚洲成a人片在线观看导航| 欧美精品久久天天躁| 日韩精品一区二区三区国语自制| 亚洲综合图色国模40p| 欧美福利视频网站| 一级毛片真人免费播放视频| 亚洲综合色丁香麻豆| 日本黄视色视频在线观看| 亚洲v视频| 欧美日韩一区二区三区在线播放| 欧美成人专区| 欧美精品四虎在线观看| 深夜爽爽爽福利动态图| 青青青国产免费| 亚洲午夜久久久精品影院| 欧美成视频人免费淫片| 亚洲视频aaa| 天天操天天射天天操|