如何在C ++文件末尾添加数据?

时间:2012-12-24 06:13:22

标签: c++ ofstream

我已按照网上的说明进行操作,此代码假设将输入添加到文件“数据库”的末尾。但是当我检查时,数据会超过现有数据。请帮忙,这是我的代码:

int main(){
    string name;
    string address;
    string handphone;
    cout << "Name: ";
    getline(cin, name);
    cout << "Address: ";
    getline(cin, address);
    cout << "Handphone Number: ";
    getline(cin, handphone);
    ofstream myfile("database", ios_base::ate);
    myfile.seekp( 0, ios_base::end );
    myfile << name<<endl;
    myfile << address<<endl;
    myfile << handphone<<endl;
    myfile.close();
}

1 个答案:

答案 0 :(得分:3)

使用:

ofstream myfile("database",  ios::out | ios::app);

ios::out:打开输出操作。

ios::app:所有输出操作都在文件末尾执行,并将内容附加到文件的当前内容。此标志只能在打开的流中用于仅输出操作。