導航:首頁 > 文件教程 > mfc讀取txt文件

mfc讀取txt文件

發布時間:2024-05-23 11:39:26

❶ 如何在MFC中讀取txt文件中的數據

MFC主要讀寫文件的類是CFile,而CStdioFile類是派生自CFile類的,主要增加了一個按行的方式讀取/寫入文件每行字元串的功能
讀寫TXT文件,寫入和輸出必須統一格式
CStdioFile myFile, File;
if(myFile.Open(CBApp::getCurrMolePath()+_T("filename.txt"), CFile::modeRead))
{
//讀取
myFile.ReadString(str);
myFile.Close();
}
else
{
//創建
File.Open(CBApp::getCurrMolePath()+_T("filename.txt"), CFile::modeWrite | CFile::modeCreate);
File.WriteString(sFileName);
File.Close();
}
//寫入
File.Open(CBApp::getCurrMolePath()+_T("filename.txt"), CFile::modeWrite );
File.WriteString(sFileName);
File.Close();

閱讀全文

與mfc讀取txt文件相關的資料

熱點內容
專題學習網站源碼 瀏覽:163
jsphead什麼 瀏覽:88
gps串口數據怎麼發送 瀏覽:968
win10文件主頁共享查看 瀏覽:411
中國聯通有哪些app是免流的 瀏覽:176
邊做邊保存的文件找不到了 瀏覽:858
win10照片應用文件夾名稱 瀏覽:966
編程如何解決資金的原子性 瀏覽:638
如何製作廣角鏡頭矯正文件 瀏覽:513
在網頁開發中應該選用哪個資料庫 瀏覽:742
iphone5移動卡貼 瀏覽:990
電腦文件的格式 瀏覽:127
extjs的xtype 瀏覽:959
suse11iso文件要u盤安裝 瀏覽:153
如何將報表統計數據轉化為圖形 瀏覽:444
如何寄快遞材料文件 瀏覽:265
java構造方法private 瀏覽:475
手機文件找回恢復 瀏覽:516
word怎麼把u盤里的文件拔掉 瀏覽:976
港版蘋果用的插排 瀏覽:1000

友情鏈接