1.新增命名空間
system.io;
system.text;
2.檔案的讀取
(1).使用filestream類進行檔案的讀取,並將它轉換成char陣列,然後輸出.
byte bydata = newbyte[100
];
char chardata = new
char[1000
];
public
void
read()
catch
(ioexception e)
}
(2).使用streamreader讀取檔案,然後一行一行的輸出。
publicvoid read(string
path)
}
3.檔案的寫入
publicvoid
write()
(2).使用filestream類建立檔案,使用streamwriter類,將資料寫入到檔案。
publicvoid 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 ...