-1

我一直试图想出一个代码来删除保存在文本文件中的数据,但无济于事。应该怎么做??在 C++ 中,这是我的代码,我该如何改进它,以便删除保存的数据可能是逐个条目的?

  #include<iostream>
  #include<string>
  #include<fstream>
  #include<limits>
  #include<conio.h>
   using namespace std;

  int main()

  {
  ofstream wysla;
  wysla.open("wysla.txt", ios::app);
 int kaput;

 string s1,s2;
 cout<<"Please select from the List below"<<endl;
 cout<<"1.New entry"<<endl;
  cout<<"2.View Previous Entries"<<endl;
  cout<<"3.Delete an entry"<<endl;
  cin>>kaput;
  switch (kaput)
 {

 case 1:

    cout<<"Dear diary,"<<endl;
cin.ignore(numeric_limits<streamsize>::max(), '\n');
    getline(cin,s1);
    wysla<<s1;
   wysla.close();

   break;
   }
  return 0;
   }
4

2 回答 2

0

我可以为您提供我用于相同目的的最快方法。使用功能http://www.cplusplus.com/reference/cstdio/fseek去准确的位置。假设您将 name 保存在文件中。然后名单将是

Alex
Timo
Vina

删除时Alex,插入一个额外的字符前缀,以便您可以将其标记为已删除

-Alex
Timo
Vina

必要时不会显示。

如果您不想这样做,则必须在没有该特定行的情况下进行复制。请参阅Replace a line in text file 中的帮助。在你的情况下,你用空字符串替换。

于 2013-04-26T13:40:19.697 回答
0

在向量的帮助下完成。

//Load file to a vector:
string line;
vector<string> mytext;
ifstream infile("wysla.txt");
if (infile.is_open())
{
    while ( infile.good() )
    {
        getline (infile,line);
        mytext.push_back(line);
    }
    infile.close();
}
else exit(-1);

//Manipulate the vector. E.g. erase the 6th element:
mytext.erase(mytext.begin()+5); 

//Save the vector to the file again:
ofstream myfile;
myfile.open ("wysla.txt");
for (int i=0;i<mytext.size();i++)
    myfile << mytext[i];
myfile.close();
于 2013-04-26T13:41:54.363 回答