第8章 流和序列化

8.1 文件數組

8.1.1 不一樣視角下的文件ide

應用程序級,人類可閱讀級,機器級this

 

8.1.2 位,字節和字節數組spa

8.2 流指針

8.2.1 關於流的類比code

8.2.2 使用流進行文件複製orm

1.一次性複製對象

2.循環分批覆制blog

當打開或建立文件時,流指針默認位於文件頭,當調用read或write方法後,流指針會自動向後移動相應的字節。所以在代碼中無需設置,每次調用read或write時,讀取的都是未處理的字節。事件

 

8.2.3 流的類型體系

1.基礎流

從流中讀取數據:canread;read;readbyte

向流中寫入數據:canwrite;write;writebyte

移動流指針:canseek;seek;position;close;dispose;flush;

超時處理:cantimeout;readtimeout;writetimeout;

流長度:length;setlength

 

2.裝飾器流

1)包含stream流基類的引用

2)沒有後備存儲概念

bufferedstream;deflatestream;gzipstream

 

3.包裝器類

1)streamreader和streamwriter

2)binaryreader和binarywriter

 

4.幫助類

file靜態類:open;openwrite;openread;readalltext;readallbytes;writeallbytes;writealllines;copy

fileinfo;path;directory;dicrectoryinfo

 

8.3 序列化

8.3.1 基本操做

IFormatter:serialize;deserialize

binaryformatter和soapformatter

默認狀況下類型都是不可序列化的,須要明確指出[Serializable]特性(133)

序列化不光須要該類型是標記爲Serializable,類型中的屬性和字段也須要是可序列化的。如不須要序列化,用[NonSerialized]特性標記,該特性只能加在字段上,不能加在屬性上(134)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
using System.IO;
using System.Data.SqlClient;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Product product = new Product(188) { Price = 4998.5F, Name = "Lumia 920" };
            IFormatter formatter = new BinaryFormatter();
            Stream fs = File.OpenWrite(@"C:\Users\Administrator\Desktop\product.obj");
            formatter.Serialize(fs, product);
            fs.Dispose();
            Console.WriteLine(product);
            //IFormatter formatter = new BinaryFormatter();
            //Stream fs = File.OpenRead(@"C:\Users\Administrator\Desktop\product.obj");
            //Product product = (Product)formatter.Deserialize(fs);
            //fs.Dispose();
            //Console.WriteLine(product);
            Console.Read();
        }

        [Serializable]
        public class Product:IDeserializationCallback
        {
            private int id;
            public string Name { get; set; }
            public double Price { get; set; }
            [NonSerialized]
            private SqlConnection conn;
            public Product(int id)
            {
                this.id = id;
                conn = new SqlConnection(@"Data Source=.;Initial Catalog=DB;User ID=sa;Password=123");
            }
            public override string ToString()
            {
                return string.Format("id:{0},name:{1},price:{2},conn:{3}", this.id, this.Name, this.Price, this.conn == null ? "NULL" : "OBJECT");
            }

            public void OnDeserialization(object sender)
            {
                conn = new SqlConnection(@"Data Source=.;Initial Catalog=DB;User ID=sa;Password=123");
            }
        }
    }
}
View Code

 將對象序列化爲字節數組:

MemoryStream stream = new MemoryStream();
IFormatter f = new BinaryFormatter();
f.Serialize(stream, infos);
byte[] buffer = stream.GetBuffer();

 反序列化:

MemoryStream stream = new MemoryStream(receiveBuffer, 0, r);
infos device = (infos)formatter.Deserialize(stream);

 

8.3.2 事件響應

[OnSerializing]

[OnSerialized]

[OnDeserializing]

[OnDeserialized]

四個特性對應四個事件方法

 

8.3.3 自定義序列化過程

相關文章
相關標籤/搜索