C怎麼用FileStream一行一行的讀取文字

2021-03-04 08:53:54 字數 1497 閱讀 4974

1樓:匿名使用者

filestream fs = new filestream (檔案路徑, filemode.open);

streamreader streamreader = new streamreader(filestream);

string line = "";

while ((line = streamreader.readline()) != null)

c#如何讀寫文字檔案

2樓:匿名使用者

新建乙個log.txt檔案

引入system.io命名空間,用檔案流

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.io;

namespace streamwriteand things are looking good.",datetime.now.tolongdatestring());

sw.write("more than that,");

sw.write(" it's that c# is fun.", truth);

sw.close();

}catch (ioexception ex)}}}讀取檔案,這裡介紹streamreader物件static void main(string args)sr.close();

}catch (ioexception ex)}另外對於簡單的文件可以直接sr.readtoend()從頭讀到尾,還有sr.read() 返回型別char。這些兄台可以自己看書去學

3樓:暗影之王

1.新增命名空間

system.io;

system.text;

2.檔案的讀取

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

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

3.檔案的寫入

(1).使用filestream類建立檔案,然後將資料寫入到檔案裡。

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

4樓:匿名使用者

c#讀取文字檔案**事例:

trym_streamreader.close();

}catch (exception ee)寫檔案filestream fs = new filestream("aaa.txt", filemode.create, fileaccess.

write);

try}

catch (exception ee)

finally

5樓:匿名使用者

自己去看看filestream 類就什麼都知道了

用C語言怎麼解決這道題,用C語言怎麼解決這道題

int 50 a c語言陣列定義,我忘記怎麼寫了int i 0 bool isover false for i i 50 i int inptr a 這裡也忘記了 取得陣列指標void order int a 排序具體操作你看看演算法 include include define arr len 5...

用c怎麼開發bs架構的專案,用C 怎麼開發BS架構的專案

winform跟webform是不一樣的.你在安裝vs的時候勾選c 就是視窗程式,勾選web開發就是web程式.1.b s架構即瀏覽器伺服器架構模式,與c s架構是相對應得架構模式。用c 做b s開發,典型的就是asp.net web開發。2.visual studio 2008 2013是常用的....

c語言中strlen怎麼用,c語言strlen函式問題

strlen為c語言庫函式,包含於string.h中,作用為計算乙個字串 字元陣列 中元素的個數,即從陣列頭部計數,直到遇到字串結束符 0為止,計數結果不包括 0.其宣告為 unsigned int strlen char s 比如定義字串 char p this is for testing 呼叫...