2009-09-25 171 views
16

如何從文件中讀取數據,如果我的文件是這樣的用逗號分隔值用逗號分隔值

1, 2, 3, 4, 5\n 
6, 7, 8, 9, 10\n 
\n 

和讀取文件後,我要如何讀取寫入/從文本文件將數據以上面相同的格式寫回到其他文件中。

我可以得到線的總數量,使用

string line; 
while(!file.eof()){ 
     getline(file,line); 
     numlines++; 
    } 
    numline--; // remove the last empty line 

,但我怎麼能知道行/線總的數字位數?

我也有整數矢量來存儲數據。 因此,我想讀取第一行,然後計算該行中的元素總數,這裏是5(1,2,3,4,5),並將它們存儲在數組/矢量中,然後讀取下一行並將它們存儲在再次導航,直到我到達EOF。

然後,我想將數據寫入到文件,再次,我想這會做將數據寫入到文件的工作,

numOfCols=1; 
for(int i = 0; i < vector.size(); i++) 
{ 
    file << vector.at(i); 
    if((numOfCols<5) file << ",";//print comma (,) 
    if((i+1)%5==0) 
    { 
        file << endl;//print newline after 5th value 
        numOfCols=1;//start from column 1 again, for the next line 
    } 
    numOfCols++; 
} 
file << endl;// last new line 

所以,我的主要問題是如何從文件中讀取數據用逗號分隔值

感謝

回答

24

第1步: 不要這樣做:直到你嘗試閱讀過去,

while(!file.eof()) 
{ 
    getline(file,line); 
    numlines++; 
} 
numline--; 

的EOF是不正確的。 標準模式是:

while(getline(file,line)) 
{ 
    ++numline; 
} 

還要注意的是的std ::函數getline()可任選地採取的第三參數。這是要打破的角色。默認情況下,這是行終止符,但您可以指定一個逗號。

while(getline(file,line)) 
{ 
    std::stringstream linestream(line); 
    std::string   value; 

    while(getline(linestream,value,',')) 
    { 
     std::cout << "Value(" << value << ")\n"; 
    } 
    std::cout << "Line Finished" << std::endl; 

} 

如果將所有值存儲在單個向量中,則使用固定寬度將其打印出來。然後我會做這樣的事情。

struct LineWriter 
{ 
     LineWriter(std::ostream& str,int size) 
       :m_str(str) 
       ,m_size(size) 
       ,m_current(0) 
     {} 

     // The std::copy() does assignement to an iterator. 
     // This looks like this (*result) = <value>; 
     // So overide the operator * and the operator = to 
     LineWriter& operator*() {return *this;} 
     void operator=(int val) 
     { 
       ++m_current; 
       m_str << val << (((m_current % m_size) == 0)?"\n":","); 
     } 

     // std::copy() increments the iterator. But this is not usfull here 
     // so just implement too empty methods to handle the increment. 
     void operator++()  {} 
     void operator++(int) {} 

     // Local data. 
     std::ostream&   m_str; 
     int const    m_size; 
     int      m_current; 
}; 

void printCommaSepFixedSizeLinesFromVector(std::vector const& data,int linesize) 
{ 
    std::copy(data.begin(),data.end(),LineWriter(std::cout,linesize)); 
} 
+0

這是幹什麼的? std :: stringstream linestream(line); – Curious 2009-09-25 00:38:15

+0

它創建一個字符串流對象。它的行爲與std :: cin,std :: cout或std :: fstream文件流類似,但使用字符串作爲數據源。所以實際上它只是一條線的流。 – 2009-09-25 00:44:51

+0

當我嘗試編譯時,出現這個錯誤,變量'std :: stringstream linestream'有初始值設定項但是不完整的類型。 我已經包含了所有需要的頭文件。 – Curious 2009-09-25 01:11:03

0

嘗試stringstream類:

#include <sstream> 

以防萬一,查找Stroustrup的 「C++程序設計語言特別版」 頁面641的例子。

它適用於我,我有一段時間試圖找出這一個。

5

這裏我發佈的CSV讀代碼以及寫代碼。我檢查了它的工作正常。

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

void readCSV(istream &input, vector< vector<string> > &output) 
{ 
    string csvLine; 
    // read every line from the stream 
    while(getline(input, csvLine)) 
    { 
      istringstream csvStream(csvLine); 
      vector<string> csvColumn; 
      string csvElement; 
      // read every element from the line that is seperated by commas 
      // and put it into the vector or strings 
      while(getline(csvStream, csvElement, ',')) 
      { 
        csvColumn.push_back(csvElement); 
      } 
      output.push_back(csvColumn); 
    } 
} 

int main() 
{ 
    ofstream myfile; 
    string a; 
    fstream file("b.csv", ios::in); 
    myfile.open ("ab.csv"); 
    if(!file.is_open()) 
    { 
      cout << "File not found!\n"; 
      return 1; 
    } 
    // typedef to save typing for the following object 
    typedef vector< vector<string> > csvVector; 
    csvVector csvData; 

    readCSV(file, csvData); 
    // print out read data to prove reading worked 
    for(csvVector::iterator i = csvData.begin(); i != csvData.end(); ++i) 
    { 
      for(vector<string>::iterator j = i->begin(); j != i->end(); ++j) 
      { 
      a=*j; 
        cout << a << " "; 
      myfile <<a<<","; 

} 
myfile <<"\n"; 
cout << "\n"; 
} 
myfile.close(); 
system("pause"); 

}