您好,登錄后才能下訂單哦!
串行化保存數據
//創建文件 CFile file(_T("1.txt"),CFile::modeCreate | CFile::modeWrite); //串行化,存儲 CArchive ar(&file,CArchive::store); //存儲數據 int i = 0x31; char ch = 'A'; float f = 1.3f; CString str(_T("chinayu@qq.com")); //寫入串行化 ar<<i<<ch<<f<<str;
串行化讀出數據
//打開文件 CFile file("1.txt",CFile::modeRead); //加載流 CArchive ar(&file,CArchive::load); //接收變量 int i; char ch; float f; CString str; CString strresult; //提取數據給變量 ar>>i>>ch>>f>>str; strresult.Format("%d,%c,%f,%s",i,ch,f,str);//轉化格式 AfxMessageBox(strresult);
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。