串行化XML(3)
發(fā)表時(shí)間:2024-02-23 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]由 串行化XML(一) 、 串行化XML(二) 可以將對(duì)象很方便、簡(jiǎn)單的串行化為XML格式, 除了可以將對(duì)象串行化為XML格式以外,還可以將其串行化為二進(jìn)制、soap格式。NET Framework通過(guò)Reflection提供自動(dòng)Serialization的機(jī)制。當(dāng)一個(gè)對(duì)象被序列化(Serial...
由 串行化XML(一) 、 串行化XML(二) 可以將對(duì)象很方便、簡(jiǎn)單的串行化為XML格式, 除了可以將對(duì)象串行化為XML格式以外,還可以將其串行化為二進(jìn)制、soap格式。
NET Framework通過(guò)Reflection提供自動(dòng)Serialization的機(jī)制。當(dāng)一個(gè)對(duì)象被序列化(Serialized)的時(shí)候,它的類(lèi)名,Assembly,以及類(lèi)實(shí)例的所有數(shù)據(jù)成員都將被寫(xiě)入存儲(chǔ)介質(zhì)中。Serialization引擎保持對(duì)所有已經(jīng)被序列化的對(duì)象引用的追蹤,以確保相同的對(duì)象引用最多只被序列化一次。
通常,一個(gè)Serialization過(guò)程會(huì)由formatter(例如BinaryFormatter、SoapFormatter)的Serialize方法引發(fā)。
一個(gè)類(lèi)能夠被序列化有兩種方式:
¨ 將此class簡(jiǎn)單地標(biāo)記為Serializable
¨ 為此class實(shí)現(xiàn)ISerializable接口,并將此class標(biāo)記為Serializable。
聲明一個(gè)可被序列化的類(lèi)
<Serializable()> _
Public Class Book
Public bookname As String
Public bookID As Integer
End Class
使用BinaryFormatter來(lái)將上面的類(lèi)序列化為二進(jìn)制格式文件Book.dat,BinaryFormatter位于
System.Runtime.Serialization.Formatters.Binary命名空間
Dim book As New book
book.BookID = 1
book.BookName = "數(shù)學(xué)"
Dim formatter As BinaryFormatter = New BinaryFormatter
Dim stream As stream = New FileStream("Book.dat", FileMode.Create, FileAccess.Write, FileShare.None)
formatter.Serialize(stream, book)
stream.Close()
經(jīng)過(guò)BinaryFormatter序列化 (serialize)的數(shù)據(jù)仍然能夠通過(guò)BinaryFormatter反序列化(deserialize)回來(lái)。
Dim formatter As BinaryFormatter = New BinaryFormatter
Dim stream As stream = New FileStream("Book.dat", FileMode.Open, FileAccess.Read, FileShare.None)
Dim book As Book = CType(formatter.Deserialize(stream), Book)
stream.Close()
MessageBox.Show("Book Name:" & book.bookname & vbCrLf & "Book ID:" & book.bookID)
同串行化為xml一樣,也可以忽略任意一個(gè)域,可以使用NonSerialized屬性進(jìn)行選擇
<NonSerialized()> _
Public bookname As String
用類(lèi)似的方法同樣也可以將對(duì)象序列化為SOAP格式,我們使用SoapFormatter。
Dim book As New book
book.bookID = 1
book.bookname = "English"
Dim formatter As SoapFormatter = New SoapFormatter
Dim stream As stream = New FileStream("Book.xml", FileMode.Create, FileAccess.Write, FileShare.None)
formatter.Serialize(stream, Book)
stream.Close()
所生成的Book.xml格式為:
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns: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/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<a1:Book id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/assem/e%2C%20Version%3D1.0.1.0%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Dnull">
<bookname id="ref-3">English</bookname>
<bookID>1</bookID>
</a1:Book>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
總結(jié):
Serialization是.NET中一種實(shí)現(xiàn)對(duì)象持久性(Persistent)的機(jī)制。它是一個(gè)將對(duì)象中的數(shù)據(jù)轉(zhuǎn)換成一個(gè)單一元素(通常是Stream)的過(guò)程。它的逆過(guò)程是Deserialization。Serialization的核心概念是將一個(gè)對(duì)象的所有數(shù)據(jù)看作一個(gè)獨(dú)立的單元。
一般說(shuō)來(lái),在兩種情況下非常需要Serialization:
1) 當(dāng)我們希望能夠?qū)?duì)象當(dāng)前的狀態(tài)完整地保存到存儲(chǔ)介質(zhì)中,以便我們以后能夠精確地還原對(duì)象時(shí)
2) 當(dāng)我們希望將對(duì)象從一個(gè)應(yīng)用程序空間(Application domain)傳遞到另一個(gè)應(yīng)用程序空間時(shí)。