亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
满洲里市| 涿鹿县| 阿克苏市| 肇州县| 修水县| 防城港市| 志丹县| 潜江市| 长春市| 安达市| 紫云| 白银市| 寿宁县| 中西区| 临高县| 金门县| 哈巴河县| 化州市| 盐池县| 泰州市| 梅州市| 荥经县| 托克托县| 凤台县| 郧西县| 佛冈县| 内黄县| 罗山县| 启东市| 鞍山市| 明星| 西和县| 黄石市| 安福县| 秀山| 镇远县| 衡南县| 阜新市| 周至县| 靖西县| 凌源市|