我要解析具有相同的基本結構,多個CSV文件,我必須保存在不同的矩陣的值。 我想將每個表格保存在一個矩陣中,但問題是我在結束字符時遇到了一些問題。 我試圖使用getline
函數,但在解析表時我無法終止while循環。解析CSV文件C++
我用這個代碼:
// MMDS.cpp : definisce il punto di ingresso dell'applicazione console.
//
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>
using namespace std;
int i = 0, j = 0 , z=0;
int main()
{
ifstream file("I_30_2_02_02_1.csv"); // declare file stream
string value;
string intvalue;
string check;
int jobs;
int machines;
int resources;
vector<string> JobTime;
vector<string> MachineId;
vector<string> ProcTime; //archiviato come JobId MachineId ProcTime
//prime tre righe
getline(file, value, ';'); // #jobs
getline(file, intvalue, '\n');
jobs = stoi(intvalue);
cout << "Jobs: " <<jobs << "\n";
getline(file, value, ';'); //#machines
getline(file, intvalue, '\n');
machines = stoi(intvalue);
cout << "Machines: " << machines << "\n";
getline(file, value, ';'); //#resources
getline(file, intvalue, '\n');
resources = stoi(intvalue);
cout << "Resources: " << resources << "\n";
//scritte inutili
getline(file, value, ';');
cout << value << " ";
getline(file, value, ';');
cout << value << " ";
getline(file, value, '\n');
cout << value << "\n";
//primo ciclo
while (getline(file, intvalue)) {
getline(file, intvalue, ';');
JobTime.push_back(intvalue);
getline(file, intvalue, ';');
MachineId.push_back(intvalue);
getline(file, intvalue, '\n');
ProcTime.push_back(intvalue);
//getline(file, intvalue, '\n');
}
for (i = 0; i <= ProcTime.size(); i++)
cout << JobTime[i] << " " << MachineId[i] << " " << ProcTime[i] <<endl;
cin >> intvalue;
return 0;
}
CSV文件是:
#Jobs;30
#Machines;2
#Resources;4
JobId;MachineId;PrTime
1;1;12
2;0;97
3;1;54
4;1;83
5;1;56
6;0;5
7;0;18
8;1;17
9;0;15
10;0;83
JobId;DueDate;RelDate;TardPenalty
1;575;4;1
2;563;70;2
3;483;1;8
4;519;68;1
5;540;64;10
6;546;126;8
7;550;2;6
每個表由其餘的跟一個空行分隔。 有人可以幫我閱讀每張表嗎? 非常感謝
可能重複[如何在C++中讀取和解析CSV文件?](http://stackoverflow.com/questions/1120140/how-can-i-read-and-parse-csv-files -in-c) –
@SimonKraemer發佈了一個很好的答案。你沒有指定你在使用結束字符時遇到了什麼問題,但是[這個答案](http://stackoverflow.com/a/15328493/2744444)可能會有所幫助。或者至少讓你去。 – bratak
我的問題是,當我讀了第一張表,我的程序繼續讀取第二張表,而我只想讀第一張。 – user3836982