C 檔案讀寫

2021-07-13 22:52:03 字數 1524 閱讀 3454

/*

* 啟動窗體後,單擊「儲存檔案」,開啟「儲存」對話方塊,將richtextbox裡儲存的檔案儲存到指定位置。

* 單擊「開啟檔案」選單,將指定的檔案內容讀取到rithtextbox裡。

*/using system;

using system.collections.generic;

using system.componentmodel;

using system.text;

using system.io;

using system.windows.forms;

private void form1_load(object sender, eventargs e)

private void 開啟檔案toolstripmenuitem_click(object sender, eventargs e)

}private void 儲存檔案toolstripmenuitem_click(object sender, eventargs e)

}private void 退出toolstripmenuitem_click(object sender, eventargs e)

}public class rwffilebyfilestream

public static string read(string strfile)}}

執行結果:

/*

* 利用streamreader類,讀取檔案內容並顯示在ritchtextbox控制項中。

* 利用streamwriter類,將ritchtextbox控制項中內容寫入檔案。

*/using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.io;

using system.linq;

using system.text;

using system.windows.forms;

private void form1_load(object sender, eventargs e)

private void button1_click(object sender, eventargs e)

sr.close();}}

private void button2_click(object sender, eventargs e)}}

}

執行結果:

c 檔案讀寫 文字讀寫

include int main else return 0 格式 intfscanf file stream,constchar format,返回值 如果成功,該函式返回成功匹配和賦值的個數。如果到達檔案末尾或發生讀錯誤,則返回 eof 引數1 file stream 檔案指標 引數2 cons...

C 檔案讀寫

原文 http www.vckbase.com document viewdoc id 1439 原作 john peregrine file i o using c 序論 我曾發表過檔案輸入輸出的文章,現在覺得有必要再寫一點。檔案 i o 在c 中比烤蛋糕簡單多了。在這篇文章裡,我會詳細解釋asc...

C 讀寫檔案

1 使用filestream讀寫檔案 檔案頭 using system using system.collections.generic using system.text using system.io 讀檔案核心 byte bydata new byte 100 char chardata ne...