中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++讀取csv文件怎么存到二維數組中

c++
小億
137
2024-06-11 10:22:36
欄目: 編程語言

可以使用以下代碼來讀取CSV文件并將其存儲到二維數組中:

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

int main() {

    // Open the CSV file
    std::ifstream file("data.csv");

    // Check if the file is open
    if (!file.is_open()) {
        std::cerr << "Could not open file" << std::endl;
        return 1;
    }

    // Create a two-dimensional vector to store the CSV data
    std::vector<std::vector<std::string>> data;

    // Read the file line by line
    std::string line;
    while (std::getline(file, line)) {
        // Create a stringstream from the line
        std::stringstream ss(line);
        std::vector<std::string> row;

        // Read each value from the stringstream and add it to the row vector
        std::string value;
        while (std::getline(ss, value, ',')) {
            row.push_back(value);
        }

        // Add the row vector to the data vector
        data.push_back(row);
    }

    // Print the data
    for (const auto& row : data) {
        for (const auto& value : row) {
            std::cout << value << " ";
        }
        std::cout << std::endl;
    }

    // Close the file
    file.close();

    return 0;
}

在上面的代碼中,我們首先打開了一個名為"data.csv"的CSV文件。然后我們創建了一個二維vector來存儲CSV數據。我們逐行讀取文件,并使用stringstream來解析每行數據并存儲到一個行向量中。最后,我們將每行向量添加到數據向量中。最后,我們遍歷數據向量并打印數據。

0
积石山| 陆河县| 平远县| 渭南市| 雷州市| 益阳市| 武冈市| 敦化市| 通榆县| 克什克腾旗| 富民县| 龙游县| 迭部县| 泌阳县| 眉山市| 阜新| 樟树市| 镇康县| 承德市| 永新县| 刚察县| 大石桥市| 新泰市| 梁河县| 道孚县| 那曲县| 芦山县| 泸州市| 铜鼓县| 金山区| 尼玛县| 峡江县| 应用必备| 宁远县| 保定市| 钟山县| 双鸭山市| 金沙县| 南投市| 青阳县| 涪陵区|