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

溫馨提示×

c++中csv文件讀寫的方法是什么

c++
小億
85
2024-06-07 17:25:29
欄目: 編程語言

在C++中,要讀寫CSV文件可以使用標準庫中的fstream庫。下面是一個簡單的示例代碼:

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

int main() {
    std::ofstream outfile("data.csv");

    if (!outfile.is_open()) {
        std::cerr << "Error opening file." << std::endl;
        return 1;
    }

    outfile << "Name,Age,Score" << std::endl;
    outfile << "Alice,25,90" << std::endl;
    outfile << "Bob,30,85" << std::endl;

    outfile.close();

    std::ifstream infile("data.csv");

    if (!infile.is_open()) {
        std::cerr << "Error opening file." << std::endl;
        return 1;
    }

    std::string line;
    std::vector<std::vector<std::string>> data;

    while (std::getline(infile, line)) {
        std::stringstream ss(line);
        std::vector<std::string> row;
        std::string cell;

        while (std::getline(ss, cell, ',')) {
            row.push_back(cell);
        }

        data.push_back(row);
    }

    infile.close();

    for (const auto& row : data) {
        for (const auto& cell : row) {
            std::cout << cell << " ";
        }
        std::cout << std::endl;
    }

    return 0;
}

在上面的代碼中,首先我們創建了一個名為"data.csv"的CSV文件,并向文件中寫入了一些數據。然后我們再次打開文件并讀取數據,將數據存儲在一個二維vector中,最后打印出數據內容。

0
怀远县| 丹东市| 卓尼县| 拜泉县| 婺源县| 鄢陵县| 榆中县| 常山县| 黄陵县| 分宜县| 麻栗坡县| 钦州市| 江安县| 松阳县| 依安县| 兰溪市| 南平市| 增城市| 吴堡县| 浮梁县| 高尔夫| 尼勒克县| 旅游| 栖霞市| 株洲市| 伊宁县| 湖南省| 双桥区| 玛纳斯县| 集贤县| 宿松县| 巩义市| 新和县| 任丘市| 磴口县| 黑龙江省| 满城县| 施秉县| 乐至县| 安多县| 邹平县|