【c++文件操作】

C++ 文件操作指南

为何文件操作重要?

文件操作允许程序与外部数据进行交互,使得数据的持久化存储成为可能。在实际应用中,文件操作可以用于配置文件、日志记录、数据存储等各种用途。

打开文件

在 C++ 中,使用 fstream 头文件来进行文件操作。打开文件可以使用 ifstream 用于读取,ofstream 用于写入,以及 fstream 用于读写。

#include <iostream>
#include <fstream>

int main() {
    std::ofstream file("example.txt");
    if (file.is_open()) {
        // 文件已成功打开
        // 在这里进行写入操作
        file << "写入一些文本到文件\n";
        file.close();  // 关闭文件
    } else {
        // 文件无法打开
        std::cout << "无法打开文件\n";
    }
    return 0;
}
读取文件内容
#include <iostream>
#include <fstream>
#include <string>

int main() {
    std::ifstream file("example.txt");
    if (file.is_open()) {
        std::string line;
        while (std::getline(file, line)) {
            // 逐行读取文件内容
            std::cout << line << std::endl;
        }
        file.close();  // 关闭文件
    } else {
        std::cout << "无法打开文件\n";
    }
    return 0;
}
文件定位指针

通过 seekg()tellg() 函数,可以定位文件指针并查找特定位置的数据。

#include <iostream>
#include <fstream>
#include <string>

int main() {
    std::ifstream file("example.txt");
    if (file.is_open()) {
        file.seekg(0, std::ios::end);  // 将指针移动到文件末尾
        std::streampos length = file.tellg();  // 获取文件长度
        file.seekg(0, std::ios::beg);  // 将指针移回文件开头

        char* buffer = new char[length];
        file.read(buffer, length);  // 读取整个文件内容到缓冲区
        file.close();

        std::cout << "文件内容:\n" << buffer << std::endl;

        delete[] buffer;
    } else {
        std::cout << "无法打开文件\n";
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

武帝为此

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值