2017年9月10日 星期日

[C#] 檔案讀寫

[C#] 檔案讀寫

檔案讀寫是程式設計師很常遇到的問題,在 C# 中與 Java 相同,不管是檔案讀寫、網路資料傳送、螢幕鍵盤輸出入都是以「串流(Stream)」的方式來達成。FileStream、MemoryStream、NetworkStream、GZipStream 等都繼承自 Stream 類別。在這個章節裡我們直接以範例來學習。
一、文字讀寫
1. 將文字寫入 C:\secret_plan.txt 中。
1// 建立檔案串流(@ 可取消跳脫字元 escape sequence)
2StreamWriter sw = new StreamWriter(@"C:\secret_plan.txt");
3sw.WriteLine("write something");            // 寫入文字
4sw.Close();                     // 關閉串流
2. 讀取文字
1// 建立檔案串流(@ 可取消跳脫字元 escape sequence)
2StreamReader sr = new StreamReader(@"C:\secret_plan.txt");
3while (!sr.EndOfStream) {               // 每次讀取一行,直到檔尾
4    string line = sr.ReadLine();            // 讀取文字到 line 變數
5}
6sr.Close();                     // 關閉串流
Stream 類別實作了 IDisposable 介面!它具有 Dispose 方法,你可以呼叫 Dispose 關閉串流或者使用 using statement。
1using (StreamWriter sw = newStreamWriter(@"C:\secret_plan.txt")) {
2    ...
3}
  看到這裡是不是覺得太簡單了呢!等等呢,Visual C# 有一個 OpenFileDialog 的對話框可以用來選取檔案。下面就來看看怎麼使用吧!
Step1:將 OpenFileDialog 控制項拖曳到表單上
拖曳新增後 OpenFileDialog 控制項會出現在 Form Design 下方。在此我們假定該控制項命名 openFileDialog1 。
Step2:撰寫控制碼
在 Form 底下撰寫 OpenFileDialog 的控制碼。
1openFileDialog1.InitialDirectory = @"c:\MyFolder\Default\"// 檔案對話方框開啟的預設資料夾
2// 設定可以選擇的檔案類型
3openFileDialog1.Filter = "Text Files (*.txt)|*.txt|Comma-Delimited Files (*.csv)|*.csv|All Files (*.*)|*.*";
4openFIleDialog1.CheckFileExists = true;             // 若檔案/路徑 不存在是否顯示錯誤訊息
5openFIleDialog1.CheckPathExists = false;
6DialogResult result = openFileDialog1.ShowDialog();     // 顯示檔案對話方框並回傳狀態(DialogResult.OK、DialogResult.Cancel)
7if (result == DialogResult.OK) {
8    // 操作檔案 openFileDialog1.FileName
9}
除了 OpenFileDialog 外,SaveFileDialog 的作法也是一樣的。
二、File 類別 - 更快的方法來處理簡單的檔案管理
1bool b = File.Exists(file_name);        // 判定檔案是否存在
2File.Create(file_name);             // 建立檔案
3string text = File.ReadAllText(file_name);  // 讀取檔案內所有文字
4File.WriteAllText(file_name, text);     // 將 text 寫入檔案
* File 類別還有很多方法,詳細參考 Head First C#、其他書籍或 MSDN
三、物件序列化(serialization)
  物件序列化是一個快速又方便的物件狀態永久保存法,它將物件的狀態(所有成員變數)儲存到檔案中。以下範例展示序列化(serialize)與反序列化(deserialize)。
1[Serializable]              // *這一行很重要
2class AnotherObj {}
3class SomeObj {
4    public int x;           // 該變數會被保存
5    public AnotherObj another;  // 該物件也會被保存,但其類別需加上 [Serializable] 屬性(attribute)
6}
Step1:引入 namespace
在 .cs 檔前頭加上 using System.Runtime.Serialization.Formatters.Binary;
Step2:建立序列化的串流
1BinaryFormatter formatter = new BinaryFormatter();
Step3:開始序列化(serialize)
1Stream output = File.Create(file_name);
2formatter.Serialize(output, objectToSerialize);
3output.Close();
Step4:反序列化(deserialize)
1Stream input = File.OpenRead(file_name);
2SomeObj obj = (SomeObj)formatter.Deserialize(input);
3input.Close();
四、二進制檔案讀寫
  除了文字檔,我們也可能保存 int、float 等變數的數值或是 byte 資料,這時候使用二進制檔案(binary)就比較方便了。
1int value = 43;
2using (FileStream output = File.Create("binarydata.dat")) {         // 寫入整數值
3    BinaryWriter writer = new BinaryWriter(output);
4    writer.Write(value);
5}
6using (FileStream input = new FileStream(@"binarydata.dat", FileMode.Open)) {   // 讀取整數值
7    BinaryReader reader = new BinaryReader(input);
8    int data = reader.ReadInt16();
9}
  以上只針對最簡單的檔案讀寫來說明,其實不僅是檔案,包括網路串流、壓縮串流都是以類似的作法做輸出入,如欲深入瞭解請參閱其他書籍或 MSDN。                          by autosun

沒有留言:

張貼留言

WPF聊天室应用(ASP.NET Core SignalR)

  WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search&...