C ++从文本文件中查找一行并更新/写入该行

时间:2013-05-25 11:30:52

标签: c++ file text updating

我有一个该程序应该能够读取的银行帐户文件。此功能现在使用ifstream工作。但我希望程序读取文本文件的第6行(其值为'balance'),然后根据需要更新它(删除并替换为新值)。

我使用for循环来查找遍历的遍历。但是,如何在需要时更新(取款和存款更新余额)

这是我现在的代码:

ifstream file;
string line;
file.open ("accounts.txt", ios::in); 

for(int i = 0; i < 6; ++i)    //6 being the 6th line
      {
         getline(file, line);
      }

下一步是什么人? 谢谢:))

1 个答案:

答案 0 :(得分:2)

如果您的文件非常小,就像您提到的那样,您可以将其带入一个字符串数组(每行文本一个元素)。然后更改数组并将整个数组重新写回文件。

例如,你可以把它读成这样的arrya:

//assuming you've defined the array A
for(int i = 0; i < 6; i++)    //NOTE: I've changed the loop counter i
      {
         getline(file, line);
         A[i] = line;
         cout << A[i] < "\n"; //This is the NEW LINE I wanted you to put
         //If the ABOVE line gives nothing, you ought to check your TXT file.
      }
//Change line 6
A[5] = "555.00";
//Now reopen the file to write
ofstream Account ("accounts.txt");
if (Account.is_open())
  {
    for(i=0;i<6;i++)
       {//NOTE THAT I HAVE INCLUDED BRACES HERE in case you're missing something.
        Account << A[i] << "\n"; //Loop through the array and write to file
       }
    Account.close();
  }

我没有测试过,但我认为没关系。 更多代码:如果在主代码末尾添加以下代码,则应该看到数组中的内容。如果这显示没有任何明显意味着您的文件是空的。

for(int i = 0; i < 6; i++)
   {
    cout << A[i] < " This is a row with data\n";
   }

注意:虽然我想帮助您解决本论坛上的澄清问题,但我认为这个问题超出了本论坛的性质。也许你需要的是花一些时间学习循环和其他结构的艺术:)