C++实现读取csv格式文件到二维数组中(csv文件以逗号分隔)
时间: 2023-08-14 16:02:27 浏览: 342
要将一个以逗号分隔的 CSV 格式文件读取到二维数组中,你可以使用 C++ 的文件输入流和字符串分割操作。
下面是一个示例代码,展示如何实现这个功能:
```cpp
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <string>
std::vector<std::vector<std::string>> readCSV(const std::string& filename) {
std::ifstream file(filename);
std::vector<std::vector<std::string>> data;
if (file) {
std::string line;
while (std::getline(file, line)) {
std::vector<std::string> row;
std::stringstream lineStream(line);
std::string cell;
while (std::getline(lineStream, cell, ',')) {
row.push_back(cell);
}
data.push_back(row);
}
file.close();
} else {
std::cout << "Failed to open file: " << filename << std::endl;
}
return data;
}
int main() {
std::string filename = "path/to/csv/file.csv";
std::vector<std::vector<std::string>> data = readCSV(filename);
// 输出读取到的二维数组
for (const auto& row : data) {
for (const auto& cell : row) {
std::cout << cell << " ";
}
std::cout << std::endl;
}
return 0;
}
```
在这个例子中,我们定义了一个 `readCSV()` 函数,该函数接受 CSV 文件的路径作为输入参数,并返回一个二维字符串向量表示的数据。
在 `readCSV()` 函数中,我们首先打开文件,然后逐行读取文件内容。对每一行,我们使用 `std::getline()` 函数和逗号作为分隔符来分割字符串,将每个单元格的内容存储到一个字符串向量中。最后,将每一行的字符串向量添加到二维数据向量中。
在 `main()` 函数中,我们调用 `readCSV()` 函数来读取 CSV 文件,并将结果存储在 `data` 变量中。然后,我们遍历二维数据向量并打印出每个单元格的内容。
记得在使用这段代码时,要包含 `<iostream>`、`<fstream>`、`<sstream>` 和 `<vector>` 头文件。
阅读全文