我编写了一个程序,它可以加载一个文本文件,可以决定每个单词的长度,并可以根据单词的长度编写文本文件。但是当我运行程序时,新的文本文件总是只用一个单词填充(每个新单词都有一个已经存在的长度相同的文本文件,只是覆盖了文本文件)
开始文本文件看起来像这样():
https://i.stack.imgur.com/WBaRf.png我新创建的文本文件(以它们的长度命名,例如:7.txt)在我运行程序后:
https://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;
}
我的目标是我已经将整个单词分类到文件中,唯一的问题是它们会覆盖自己…我怎么才能去掉呢?
如果您不想覆盖文件的内容,您可以打开文件并指定您想要附加到文件:
std::ofstream outFile(result, ios::app);
// ^^^^^^^^