C++讀寫檔案儲存至容器list中
C++讀寫檔案及容器list基本操作
大家在開始入門C/C++時,都要練習個學生管理系統啥的,主要都為了進一步掌握所學知識,並能使用這些知識。其中這個小專案的重難點就在資料的操作了,其中如何將資料儲存到檔案中及如何將檔案中的內容讀出並存放到list中。
讀寫檔案基本思路是,開啟檔案,然後進行讀寫操作,在關閉檔案。其中讀寫檔案我是選擇了fscanf()和fprintf(),
使用這一對函式,我個人感覺,寫入的檔案可視性較強,在這裡比二進位制讀寫fwrite()和fread()好。
參考程式碼如下:
1.讀出檔案存放list中
typedef list<Student>Stu;
bool DataOper::ReadFileToList(Stu &stu)
{
FILE *fp = NULL;
//1.fopen
if( (fp = fopen("student.txt","r")) == NULL)
{
cout<<"open File Error"<<endl;
return false;
}
//2.read File
while(1)
{
fscanf(fp,"%d %s %d %c %d %d %d %d %d",&student.Id,student.Name,&student.passwd,&student.Sex,&student.Age,
&student.Class,&student.Math,&student.English,&student.Chinese);
if(feof(fp))
{
break;
}
stu.push_back(student);
}
//3.fclose
fclose(fp);
return true;
}
2.將list資料寫入檔案
bool DataOper::WriteFile(Stu &stu)
{
FILE *fp = NULL;
Stu::iterator iStu = stu.begin();
//1.fopen
if( (fp = fopen("student.txt","w")) == NULL)
{
cout<<"open File Error"<<endl;
return false;
}
//2.write File
while(iStu != stu.end())
{
fprintf(fp,"%d %s %d %c %d %d %d %d %d\n",iStu->Id,iStu->Name,iStu->passwd,iStu->Sex,iStu->Age,iStu->Class,
iStu->Math,iStu->English,iStu->Chinese);
iStu++;
}
//3.fclose
fclose(fp);
return true;
}