序列化與反序列化是.net程序設計中常見的應用,本文即以實例展示了.net實現序列化與反序列化的方法。具體如下:
一般來說,.net中的序列化其實就是將一個對象的所有相關的數據保存為一個二進制文件(注意:是一個對象)
而且與這個對象相關的所有類型都必須是可序列化的所以要在相關類中加上 [Serializable]特性
對象類型包括:對象本身包含的類型,父類
擁有需要的對象之后:
1.將對象轉換為二進制數據 使用專門的對像進行轉換 BinaryFormatter
2.將二進制數據寫入到文件 FileSteam
反序列化則是把二進制文件轉換為一個對象
示例代碼如下所示:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;using System.Runtime.Serialization.Formatters.Binary;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Person per;//將要被序列化的對象 Console.WriteLine("------序列化與反序列化------"); Console.WriteLine("是否讀取已經序列化的對象per"); string str = Console.ReadLine(); if (str == "yes") { if (!File.Exists("save.bin")) { Console.WriteLine("你還沒有將per序列化"); return; } using (FileStream fs = new FileStream("save.bin", FileMode.Open)) { BinaryFormatter bf = new BinaryFormatter(); per = bf.Deserialize(fs) as Person;//將二進制數據轉換為per對象 per.SayHi(); Console.ReadLine(); } } else { per = new Person(); per.Name = "小李"; using(FileStream fs=new FileStream("save.bin",FileMode.Create)) { BinaryFormatter bf = new BinaryFormatter(); bf.Serialize(fs,per);//將per對象轉換成二進制數據,并保存。 Console.WriteLine("序列化成功"); Console.ReadLine(); } } } } [Serializable] class Person { public string Name; public void SayHi() { Console.WriteLine("hello {0}",Name); } }}
相信本文實例對于大家進一步理解.net的序列化與反序列化有一定的借鑒幫助作用。
新聞熱點
疑難解答