我想使用随机访问文件管理为学校创建仓库程序。 我构建了一个名为product(prodotto)的类,其中包含许多私有var,我必须创建一个新记录。
该函数使用seekg指针检查产品是否已存在并读取文件。如果没有,你可以在那个空间写文件。关键是产品代码(codice)。
问题在于,每次运行该功能时,前一条记录都会被删除。
在此版本之前,我使用了一般fstream
来完成工作,但情况更糟。 file.dat始终为空。
我用tellg和tellp检查了指针,他们没问题。阅读部分似乎还可以。我认为问题在于写作声明。
这是功能:
void aggiungiProd()
{
int code;
string name,section, description;
int quantity;
double price;
cout<<"\n(insert 0 to come back)"<<endl;
//exit condiction
cout<<"Insert product code:";
cin>>code;
if( cin.good()==0)
{ code=0;
cout<<"invalid code. Please reinsert:"<<endl;
cin>>code;
} //also this part is not working but is less important
if(codice==0) return;//exit condition
ifstream readFile("prod.dat",ios::in);
if(!readFile){
cerr<<"Error during the reading";
exit(1);
}
int var;
var=code-1;
//use a pointer to indicate the location to read
readFile.seekg(var * (sizeof(Prodotto)),ios::beg );
//reading the product record
Prodotto prodotto;
readFile.read(reinterpret_cast< char*> (&prodotto),sizeof(Prodotto));
readFile.close();
if(prodotto.getCod()==0)
{
//THIS PART IS ONLY ABOUT VARIABLES TO SET--> SKIP
cout<<"Inserisci il nome del prodotto (max 30 caratteri): ";
cin.ignore();
getline(cin,name);
if(name=="0") return;//condizione uscita
cout<<"Inserisci quantità da aggiungere: ";
cin>>quantita;
if(quantita==0) return;
cout<<"Inserisci il prezzo del prodotto: " ;
cin>>prezzo;
if(prezzo==0) return;
cout<<"Inserisci sezione di appartenenza del prodotto(max 15 caratteri): " ;
cin.ignore();
getline(cin,sezione);
if(sezione=="0") return;
cout<<"Aggiungi una descrizione del prodotto (max 500 caratteri):";
cin.ignore();
getline(cin,descrizione);
if(descrizione=="0") return;
//END OF THE VARIABLES INSERTION
//NOW PUT THE VARIABLES IN THE PRODUCT prodotto
prodotto.setCod(codice);
prodotto.setNome(nome);
prodotto.setQta(quantita);
prodotto.setPrz(prezzo);
prodotto.setSez(sezione);
prodotto.setDes(descrizione);
//open the file as output
ofstream inOutProd("prod.dat", ios::out );
if(!inOutProd){
cerr<<"Error in the file creation";
exit(1);
}
//pointer for the location of the new record
inOutProd.seekp(var * (sizeof(Prodotto)));
//write the record prodotto
inOutProd.write(reinterpret_cast<const char*>(&prodotto),sizeof(Prodotto));
//i believe the problem is in the statement over this line. I tried also to add ios::app
// in the ofstream line but it only append the new record at the end of file.
cout<<"the following product has been saved successfully\n"<<endl;
outputLine(cout,prodotto);
inOutProd.close();
}
else
{
cerr<<"The product"<<codice<<"is already in our database"<<endl;
}
}
答案 0 :(得分:0)
在编写新记录之前,您需要检查seekp调用的返回值。如果文件的长度不足以包含记录N,则seekp将返回错误代码,您必须将数据附加到文件中,使其足够长以包含记录N.