C 檔案的讀取與寫入

2021-09-11 08:36:41 字數 614 閱讀 6304

1.txt檔案讀取

string

path =

@"e:\haha.txt"

;   //

檔案位置

string

contens =

file

.readalllines(path,

encoding

.default);

textbox1.text = contens[0];   //自己弄個textbox工具,就可以把txt裡的資料列印出來

這個可以顯示資料量的大小

2.bin檔案讀取

string path = @"e:\test.bin";

filestream stream = new filestream(path, filemode.open);

byte data = new byte[stream.length];    是位元組型別的長度

num = stream.read(data, 0, (int)(stream.length));   //讀取資料到data陣列

stream.flush();

stream.close();

0, num); //如果有串列埠的話,這個就可以列印

檔案的讀取與寫入

檔案的建立 creat file writename new file d 相對路徑,如果沒有則要建立乙個新的output。txt檔案 writename.createnewfile 建立新檔案 bufferedwriter out new bufferedwriter new filewriter...

檔案的讀取與寫入

1 txt檔案的讀取 使用open函式讀取檔案 path 資料集檔案 文字檔案.txt f open path,encoding utf 8 mode r f.read 讀取檔案全部內容,如果在read 函式中傳入數字引數,表示讀取該位置之前的內容 f.readline 按行讀取檔案的第一行,如果r...

檔案寫入與檔案讀取

進行檔案寫入與讀取操作 在檔案讀取部分有些不理解 include include using namespace std struct tream intmain for j 0 j i j delete t ofile.close ifstream ifile ifile.open word.tx...