117.info
人生若只如初见

c++读取csv文件怎么存到二维数组中

可以使用以下代码来读取CSV文件并将其存储到二维数组中:

#include 
#include 
#include 
#include 

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> 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 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来解析每行数据并存储到一个行向量中。最后,我们将每行向量添加到数据向量中。最后,我们遍历数据向量并打印数据。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe1ecAzsIBANXBVw.html

推荐文章

  • c++绝对值函数如何使用

    在C++中,可以使用abs()函数来计算一个数的绝对值。该函数位于cmath标准库中,因此在使用之前需要包含对应的头文件。
    以下是一个简单的示例代码,演示如何使...

  • c++输出最小值的方法是什么

    在C++中,可以使用STL中的min_element函数来输出最小值。这个函数需要在#include 头文件中使用。下面是一个示例代码:
    #include #include #include int mai...

  • c#中stopwatch使用要注意哪些事项

    在使用C#中的Stopwatch类时,需要注意以下事项: Stopwatch类是用于测量时间间隔的高精度计时器,可以精确到纳秒级别。因此,在计算时间间隔时应该使用其提供的方...

  • c#中stopwatch的作用是什么

    在C#中,Stopwatch类用于测量代码块或操作的执行时间。它提供了高精度的计时功能,可以帮助开发人员评估代码的性能并进行优化。Stopwatch类具有Start()、Stop()和...

  • 怎么设置Java应用程序的运行环境

    要设置Java应用程序的运行环境,您可以按照以下步骤进行操作: 安装Java运行环境(JRE)或Java开发工具包(JDK):首先,您需要安装Java运行环境或Java开发工具包...

  • java异常的概念是什么

    在Java中,异常是指在程序运行过程中可能会发生的错误或意外情况。当发生异常时,程序会抛出异常,并停止正常的执行流程。异常分为两种类型:受检异常(checked ...

  • c++中final关键字的作用是什么

    在C++中,final关键字用于声明一个类、函数或方法是不可继承或覆盖的。当一个类被声明为final时,其他类不能再继承它。当一个函数或方法被声明为final时,子类不...

  • sql in语句的用法是什么

    在SQL语句中,IN用于指定条件范围。它允许在WHERE子句中指定多个值,并且可以与SELECT,UPDATE和DELETE语句一起使用。
    语法如下:
    SELECT column_name...