關於c 中txt檔案的讀取操作

2021-05-27 14:59:49 字數 571 閱讀 5555

txt文件如下:

小明 1 00000001 13900000001

小強 2 00000002 13900000002

在listctrl中顯示程式如下:

string strtemp;

cstring name,lev,id,phone;

int nrow=0;

char str2[100];

ifstream infile("userdata.txt",ios::in);

if(!infile) return 0;

'\n');//獲取一行的資料

while(!infile.eof())

}nrow=m_list1.insertitem(nrow,name);//插入行

m_list1.setitemtext(nrow,1,lev);//設定該行的不同列的顯示字元

m_list1.setitemtext(nrow,2,id);

m_list1.setitemtext(nrow,3,phone);

nrow=nrow+1;

}

C 中txt座標檔案的讀取

一 相關知識 1 容器vector的使用 需要 include以及using namepace std 2 結構體的使用 struct 3 檔案輸入流 需要 include 二 編寫 include include include include includeusing namespace std...

C 讀取txt檔案

1.逐行讀入 void readtxt string file ifstream infile infile.open file.data 將檔案流物件與檔案連線起來 assert infile.is open 若失敗,則輸出錯誤訊息,並終止程式執行 string s while getline i...

C 讀取txt檔案

1.逐行讀入 void readtxt string file infile.close 關閉檔案輸入流 2.逐個字元讀入 忽略空格與回車 void readtxt string file ifstream infile infile.open file.data 將檔案流物件與檔案連線起來 ass...