C#讀寫文字檔的方法

來源:互聯網
上載者:User

C#讀寫文字檔的方法

   本文執行個體講述了C#讀寫文字檔的方法。分享給大家供大家參考。具體分析如下:

  System.IO命名空間中的類為託管應用程式提供檔案以及其他形式的輸入輸出。託管i/o的基本構件是流,而流是位元組導向的資料的抽象表示。流通過System.IO.Stream類表示.

  System.IO.FileStream允許將檔案作為流訪問;

  System.IO.MemoryStream允許將記憶體塊作為流進行訪問

  以下為讀寫檔案的樣本

  先引用命名空間

  using System.IO;

  以下是原始碼

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

namespace 文字檔開啟測試

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void btn_Read_Click(object sender, EventArgs e)

{

//異常檢測開始

try

{

FileStream fs = new FileStream(@tB_PachFileName.Text , FileMode.Open, FileAccess.Read);//讀取檔案設定

StreamReader m_streamReader = new StreamReader(fs, System.Text.Encoding.GetEncoding("GB2312"));//設定讀寫的編碼

//使用StreamReader類來讀取檔案

m_streamReader.BaseStream.Seek(0, SeekOrigin.Begin);

// 從資料流中讀取每一行,直到檔案的最後一行,並在rTB_Display.Text中顯示出內容

this.rTB_Display.Text = "";

string strLine = m_streamReader.ReadLine();

while (strLine != null)

{

this.rTB_Display.Text += strLine + "\n";

strLine = m_streamReader.ReadLine();

}

//關閉此StreamReader對象

m_streamReader.Close();

}

catch

{

//拋出異常

MessageBox.Show("指定檔案不存在");

return;

}

//異常檢測結束

}

private void btn_Replace_Click(object sender, EventArgs e)

{

//判斷替換開始

if (tB_Replace.Text == ""&&tB_Replace_2.Text=="")

{

MessageBox.Show("想替換的字元都沒有就換啊,你太有才了");

}

else

{

if (rTB_Display.Text == "")

{

MessageBox.Show("檔案內容為空白無法進行替換,請檢查檔案");

}

else

{

string str = rTB_Display.Text.ToString();

rTB_Display.Text = str.Replace(@tB_Replace.Text ,@tB_Replace_2.Text);//替換

}

}

//結束

}

private void btn_Save_Click(object sender, EventArgs e)

{

//異常檢測開始

try

{

//建立一個檔案流,用以寫入或者建立一個StreamWriter

FileStream fs = new FileStream(@tB_Save.Text, FileMode.OpenOrCreate, FileAccess.Write);

StreamWriter m_streamWriter = new StreamWriter(fs);

m_streamWriter.Flush();

// 使用StreamWriter來往檔案中寫入內容

m_streamWriter.BaseStream.Seek(0, SeekOrigin.Begin);

// 把richTextBox1中的內容寫入檔案

m_streamWriter.Write(rTB_Display.Text);

//關閉此檔案

m_streamWriter.Flush();

m_streamWriter.Close();

}

catch

{

//拋出異常

MessageBox.Show("寫入檔案失敗,請檢查路徑 檔案名稱與許可權是否符合");

}

//異常檢測結束

}

}

}

  希望本文所述對大家的C#程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.