在这个程序中,我想更改文件中的一些值。现在,我以追加模式打开文件并将我的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;
}

最佳答案

如果您阅读例如this reference您会看到std::ios::app的意思是



因此,无论您在哪里寻找都无所谓,所有写操作都将在文件末尾完成。

修改文件的最佳方法是将其读入内存,然后将其重写为临时文件,然后将临时文件移到原始文件上。

10-07 18:53