91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
澜沧| 古蔺县| 星座| 商都县| 德格县| 新乐市| 南康市| 东方市| 通州区| 融水| 德州市| 喜德县| 新源县| 伊宁市| 东阳市| 富川| 铜川市| 楚雄市| 辛集市| 育儿| 卢氏县| 肇源县| 古田县| 桦南县| 沾化县| 泸西县| 乌鲁木齐县| 焦作市| 建阳市| 蓬安县| 黄龙县| 香河县| 同德县| 精河县| 高要市| 阳高县| 望都县| 合川市| 遂川县| 东至县| 万宁市|