C如何對檔案進行讀寫,c 如何讀寫文字檔案

2021-03-11 09:09:25 字數 2572 閱讀 3159

1樓:愛新覺羅

//省略些許判斷(如有無該檔案)

filestream fs = new filestream("a.txt", filemode.open);

streamreader sr = new streamreader(fs);//讀取回

string txt = sr.readtoend();

streamwriter sw = new streamwriter(fs);//寫入

答sw.write("寫入");

sw.flush();

2樓:世爵龍

很簡單啊,引入名稱空間system.io。然後用檔案流的方式進行讀寫即可。相應的方法內很多都是封裝容好的了。

filestream fs = new filestream("你的檔案路徑包括字尾", filemode.open);

streamreader sr = new streamreader(fs);

string txt = sr.readtoend();//整個檔案的字串都讀取出來。

streamwriter sw = new streamwriter(fs);

sw.write("你要寫入的字串");

sw.flush();

3樓:匿名使用者

還有看你讀寫什麼檔案啊,針對不能檔案有不同的操作。比如xml txt excel

c#如何讀寫文字檔案

4樓:匿名使用者

新建一個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。這些兄臺可以自己看書去學

5樓:暗影之王

1.新增名稱空間

system.io;

system.text;

2.檔案的讀取

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

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

3.檔案的寫入

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

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

6樓:匿名使用者

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

trym_streamreader.close();

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

write);

try}

catch (exception ee)

finally

7樓:匿名使用者

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

c#怎樣用檔案讀寫在檔案的原有基礎上追加一行資料

8樓:四舍**入

首先添抄加名稱空間using system.io:操作襲檔案時,一定要記得及時bai關閉du流,然後:

string path="d\1.txt";//檔案的路徑,保證文zhi件存dao在。

steamwriter sw=new streamwriter(fs);

sw.writeline(要追加的內容);

sw.close();

fs.close();

9樓:

首先新增名稱空間using system.io;

這裡有兩種方法,希望對你有幫助,操作檔案時,一定要記得及版時關閉

流。第一種方法:權

10樓:匿名使用者

using system.io;

public void addinformation ()

11樓:記不住

第一種方法第三行的steamwriter少寫了一個r,應該是streamwriter

請問c語言開啟檔案時raw幾種讀寫的方式有什

r 以可讀寫方式開啟檔案,該檔案必須存在。w 開啟可讀寫檔案,若檔案存在則檔案長度清為零,即該檔案內容會消失。若檔案不存在則建立該檔案。a 以附加方式開啟可讀寫的檔案。若檔案不存在,則會建立該檔案,如果檔案存在,寫入的資料會被加到檔案尾後,即檔案原先的內容會被保留。原來的eof符不保留 w 開啟檔案...

如何使用Python3讀寫INI配置檔案

import configparser 生成config物件 conf configparser.configparser 用config物件讀取配置檔案 conf.read ini 從ini配置檔案中獲取資訊 a conf.get xx yy print a 結果為 zz ini xx yy zz...

c語言記憶體讀寫問題,求大神幫忙,謝謝

你好,如下 char readfile char path length filelength fp ch char malloc length fread ch,length,1,fp ch length 1 0 return ch int filelength file fp 希望可以幫到你。是...