在这个程序中,我想更改文件中的一些值。现在我以附加模式打开文件并将我的 seekp 指针移动到我给定的位置。但问题是它在文件末尾写入数据而不是在seekp 指针在那里。
#include<iostream>
#include<fstream>
using namespace std;
int main(){
//creates a file for testing purpose.
ofstream fout;
fout.open("test.txt");
fout<<1;
fout<<" ";
fout<<34;
fout<<" ";
fout<<-1;
fout<<" ";
fout<<-1;
fout.close();
//reads the data in the file
ifstream fin;
fin.open("test.txt");
fin.seekg(0,ios::beg);
fin.unsetf(ios::skipws);//for taking whitespaces
char sp;
int item;
fin>>item;
while(!fin.eof()){
cout<<item<<endl;
fin>>sp;//to store whitespaces so that fin can take next value
fin>>item;
}
cout<<item<<endl;
fin.close();
//opening file for editing
fout.open("test.txt",ios::app);
fout.seekp(5,ios::beg);
fout<<3;
fout.close();
return 0;
}