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