C# 物件到 XML

王林
發布: 2024-09-03 15:04:45
原創
648 人瀏覽過

序列化確實是將物件的狀態轉換為可以儲存或傳輸的格式的過程。在 C# 中,可以使用 XmlSerializer 類別將物件序列化為 XML 格式。它可以將 C# 物件轉換為 XML 表示形式,從而可以更輕鬆地透過 Internet 進行傳輸並簡化對檔案的寫入。

文法:

XmlSerializer variable_name = new XmlSerializer();
登入後複製

其中variable_name代表XmlSerializer類別的實例。

在 C# 中將物件轉換為 XML 的步驟如下:

  • 將物件的狀態儲存在某種形式的媒體(如硬碟、串流等)中的程序稱為序列化,物件可以以 XML 格式進行序列化。
  • 為了能夠將物件轉換為XML,我們將使用一個名為XmlSerializer() 的函數將給定的物件序列化為XML 格式,並使用另一個名為XmlTextWriter() 的函數來輸出序列化的XML 字串。
  • 執行物件的序列化可以使物件透過網路傳輸,寫入檔案變得更容易,並且可以有效地執行複雜的服務。

範例

讓我們討論 XML 物件的範例。

範例#1

C# 程式將給定物件轉換為 XML 格式並將內容寫入儲存在指定位置的 XML 文件,然後顯示文件內容:

代碼:

using System.Xml.Serialization;
using System.IO;
//a class called Country is defined within which the two strings are defined
public class Country
{
public string name = "India";
public string capital = "New Delhi";
}
//main method is called
static void Main(string[] args)
{
//an instance of the class country is created
Country c = new Country();
//an instance of the XmlSerializer class is created
XmlSerializer inst = new XmlSerializer(typeof(Country));
//an instance of the TextWriter class is created to write the converted XML string to the file
TextWriter writer = new StreamWriter(@ "C:\Users\admin\Desktop\check.xml");
inst.Serialize(writer, c);
writer.Close();
}
登入後複製

上述程式的輸出如下圖:

C# 物件到 XML

最後,程式以 XML 格式顯示檔案內容作為螢幕上的輸出,如提供的快照所示。

範例#2

C# 程式將給定物件轉換為 XML 格式並將內容寫入儲存在指定位置的 XML 文件,然後顯示文件內容:

代碼:

using System.Xml.Serialization;
using System.IO;
//a class called Learning is defined within which the two strings are defined
public class Learning
{
public string organization = "EDUCBA";
public string topic = "C#";
}
//main method is called
static void Main(string[] args)
{
//an instance of the class Learning is created
Country c = new Learning();
//an instance of the XmlSerializer class is created
XmlSerializer inst = new XmlSerializer(typeof(Learning));
//an instance of the TextWriter class is created to write the converted XML string to the file
TextWriter writer = new StreamWriter(@ "C:\Users\admin\Desktop\check.xml");
inst.Serialize(writer, c);
writer.Close();
}
登入後複製

上述程式的輸出如下圖:

C# 物件到 XML

在給定的程式中,名為「Learning」的類別定義了兩個字串「organization」和「topic」。然後,程式將文件的 XML 格式內容顯示為螢幕上的輸出,如提供的快照所示。

範例#3

C# 程序,將給定的 C# 物件轉換為 XML 格式,並將內容寫入儲存在指定位置的 XML 文件,然後顯示該文件的內容:

代碼:

using System.Xml.Serialization;
using System.IO;
//a class called University is defined within which the two strings are defined
public class University
{
public string name = "VTU";
public string stream = "BE";
}
//main method is called
static void Main(string[] args)
{
//an instance of the class University is created
Country c = new University();
//an instance of the XmlSerializer class is created
XmlSerializer inst = new XmlSerializer(typeof(University));
//an instance of the TextWriter class is created to write the converted XML string to the file
TextWriter writer = new StreamWriter(@ "C:\Users\admin\Desktop\check.xml");
inst.Serialize(writer, c);
writer.Close();
}
登入後複製

上述程式的輸出如下圖:

C# 物件到 XML

程式定義了一個名為University的類,它定義了兩個字串:name和stream。然後它會呼叫 main 方法,該方法會建立 XmlSerializer 類別的實例以將 University 物件序列化為 XML 格式。然後,它會建立 TextWriter 類別的實例,以將轉換後的 XML 字串寫入檔案中的指定位置。最後,它以 XML 格式顯示檔案內容,作為螢幕上的輸出。

結論 – C# 物件到 XML

在本文中,我們透過程式設計範例及其輸出了解了使用 XmlSerializer() 函數將物件轉換為 XML 的概念、定義、語法和步驟。

以上是C# 物件到 XML的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!