C++ byte數(shù)組與文件IO操作

c++
小樊
114
2024-07-13 17:36:29

在C++中,可以使用std::fstream類來(lái)進(jìn)行文件IO操作。下面是一個(gè)示例代碼,演示了如何將byte數(shù)組寫(xiě)入文件并讀取文件中的內(nèi)容到byte數(shù)組中:

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

int main() {
    // 創(chuàng)建一個(gè)byte數(shù)組
    std::vector<unsigned char> data = {0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x57, 0x6f, 0x72, 0x6c, 0x64};

    // 將byte數(shù)組寫(xiě)入文件
    std::ofstream outfile("data.bin", std::ios::binary);
    if (outfile.is_open()) {
        outfile.write(reinterpret_cast<const char*>(data.data()), data.size());
        outfile.close();
    } else {
        std::cerr << "Error opening file for writing" << std::endl;
        return 1;
    }

    // 從文件中讀取內(nèi)容到byte數(shù)組中
    std::ifstream infile("data.bin", std::ios::binary);
    if (infile.is_open()) {
        infile.seekg(0, std::ios::end);
        std::streampos fileSize = infile.tellg();
        infile.seekg(0, std::ios::beg);

        std::vector<unsigned char> readData(fileSize);
        infile.read(reinterpret_cast<char*>(readData.data()), fileSize);
        infile.close();

        // 打印讀取的內(nèi)容
        for (unsigned char c : readData) {
            std::cout << c;
        }
        std::cout << std::endl;
    } else {
        std::cerr << "Error opening file for reading" << std::endl;
        return 1;
    }

    return 0;
}

在上面的示例中,首先創(chuàng)建了一個(gè)包含一些ASCII字符的byte數(shù)組data。然后將這個(gè)byte數(shù)組寫(xiě)入名為"data.bin"的二進(jìn)制文件中。接著從文件中讀取內(nèi)容并存儲(chǔ)到另一個(gè)byte數(shù)組readData中,最后打印讀取的內(nèi)容。

0