C 讀寫txt檔案的兩種方法介紹

2022-07-29 18:51:11 字數 680 閱讀 4421

1.新增命名空間

system.io;

system.text;

2.檔案的讀取

(1).使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出.

byte bydata = new

byte[100

];

char chardata = new

char[1000

];

public

void

read()

catch

(ioexception e)

}

(2).使用streamreader讀取檔案,然後一行一行的輸出。

public

void read(string

path)

}

3.檔案的寫入

public

void

write()

(2).使用filestream類建立檔案,使用streamwriter類,將資料寫入到檔案。

public

void write(string

path)

以上就完成了,txt文字文件的資料讀取與寫入。

C 讀寫txt檔案的兩種方法介紹

c 讀寫txt檔案的兩種方法介紹 1.新增命名空間 system.io system.text 2.檔案的讀取 1 使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出。byte bydata new byte 100 char chardata new char 1000 ...

C 讀寫txt檔案的兩種方法介紹

1.新增命名空間 system.io system.text 2.檔案的讀取 1 使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出。byte bydata new byte 100 char chardata new char 1000 public void read ...

C 讀寫txt檔案的兩種方法介紹

1.新增命名空間 system.io system.text 2.檔案的讀取 1 使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出。byte bydata new byte 100 char chardata new char 1000 public void read ...