C ++如何在不覆盖现有文本文件的情况下将字符串添加到现有文本文件中?

时间:2015-05-18 21:19:30

标签: c++ file text stringstream

我编写了一个可以加载一个文本文件的程序,可以决定每个单词的长度,并可以根据单词的长度写入txt文件。但是当我运行程序时,新的文本文件总是只填充一个单词(每个新单词都有一个已经存在的文本文件,只需覆盖文本文件)

开始文本文件如下所示:

http://i.stack.imgur.com/WBaRf.png

我在运行程序后创建了新的文本文件(以其长度命名,例如:7.txt):

http://i.stack.imgur.com/6QKgE.png

我的代码:

#include <iostream>
#include <fstream>
#include <sstream>

using namespace std;

int main(int argc, char *argv[])
{
    char     filename[128];
    ifstream file;
    char     line[100];

cout << "Input filename: " << flush;
cin.getline(filename, 127);

file.open(filename, ios::in);

if (file.good())
{
    file.seekg(0L, ios::beg);
    int number = 0;
    while (!file.eof())
    {
        file.getline(line, 100);
        stringstream stream;
        stream << line;
        number++;
        cout <<"Number: "<< number << " length: " << stream.str().length() << " " << line << endl;
        std::stringstream sstm;
        int laenge = stream.str().length();
        string txt = ".txt";
        sstm << laenge << txt;
        string result = sstm.str();
        std::ofstream outFile(result);
        outFile << line << endl;
        outFile.close();
    }
}
else
{
    cout << "File not found" << endl;
}

while (true)
{
};

return 0;

}

我的目标是我已经将整个单词整理成文件中的文件,唯一的问题是它们会覆盖自己......我怎样才能摆脱它?

1 个答案:

答案 0 :(得分:0)

如果您不想覆盖文件的内容,可以打开该文件并指定要附加到该文件:

std::ofstream outFile(result, ios::app);
                           // ^^^^^^^^