如何逐行阅读

时间:2015-01-11 15:27:09

标签: c++ line

我只是c ++的初学者,所以请不要难以评判我。 可能这是一个愚蠢的问题,但我想知道。

我有一个这样的文本文件(总会有4个数字,但行数会有所不同):

5 7 11 13
11 11 23 18
12 13 36 27
14 15 35 38
22 14 40 25
23 11 56 50
22 20 22 30
16 18 33 30
18 19 22 30

这就是我想要做的: 我想逐行阅读这个文件,并将每个数字放入变量。然后我会用这4个数字做一些函数,然后我想读下一行,再用这4个数字做一些函数。我怎样才能做到这一点? 就我而言

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    int array_size = 200;
    char * array = new char[array_size];
    int position = 0;

    ifstream fin("test.txt");

    if (fin.is_open())
    {

        while (!fin.eof() && position < array_size)
        {
            fin.get(array[position]); 
            position++;
        }
        array[position - 1] = '\0'; 

        for (int i = 0; array[i] != '\0'; i++)
        {
            cout << array[i];
        }
    }
    else
    {
        cout << "File could not be opened." << endl;
    }
    return 0;
}

但像这样我正在将整个文件读入数组,但我想逐行阅读,执行我的功能,然后阅读下一行。

1 个答案:

答案 0 :(得分:2)

为了从文件中读取数据,我发现stringstream非常有用。

这样的事情怎么样?

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>

using namespace std;

int main()
{
  ifstream fin("data.txt");
  string line;

  if ( fin.is_open()) {
    while ( getline (fin,line) ) {
      stringstream S;
      S<<line; //store the line just read into the string stream
      vector<int> thisLine(4,0); //to save the numbers
      for ( int c(0); c<4; c++ ) {
        //use the string stream as a new input to put the data into a vector of int    
        S>>thisLine[c]; 
      }
      // do something with these numbers
      for ( int c(0); c<4; c++ ) {
        cout<<thisLine[c]<<endl;
      }  
   }
}
else
{
   cout << "File could not be opened." << endl;
}
return 0;
}