1.新增命名空間
system.io;
system.text;
2.檔案的讀取
(1).使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出。
byte
bydata =
newbyte
[100];
char
chardata =
newchar
[1000];
public
void
read()
catch
(ioexception e)
}
(2).使用streamreader讀取檔案,然後一行一行的輸出。
public void read(string path)
}3.檔案的寫入
(1).使用filestream類建立檔案,然後將資料寫入到檔案裡。
public void write()
(2).使用filestream類建立檔案,使用streamwriter類,將資料寫入到檔案。
public void write(string path)
C 讀取檔案
using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.text using system.window...
c 讀取檔案
用c 讀取檔案內容中文是亂碼的解決方法 方法1 streamreader din new streamreader c 1.txt system.text.encoding.getencoding gb2312 string html while din.peek 1 din.close 方法2 s...
C 檔案讀取
一.fileinfo類,檢視檔案屬性,建立檔案,移動檔案,重新命名檔案等資訊。directoryinfo類,用來獲取資料夾的資訊。二.file讀寫檔案,file.readalllines 讀取所有行string陣列 file.readalltext 讀取整個檔案string file.readall...