C++文件操作

零、文件操作的概念

在这里插入图片描述



一、文本文件

1.写文本文件

1.文件打开方式
在这里插入图片描述


2.步骤
在这里插入图片描述


3.代码

//文本文件 : 写文件
#include <iostream>
#include <fstream> //1.包含头文件
using namespace std;

int main(){
    //2.创建流对象
    ofstream ofs;
    //3.指定打开方式 : 写文件
    ofs.open("text.txt",ios::out);
    //4.写内容
    ofs << "HelloWorld!" << endl;
    ofs << "I'm Edward! A great programmer in the future!" << endl;
    //5.关闭文件
    ofs.close();

    return 0;
}



2.读文本文件 (4种方法)

1.步骤
在这里插入图片描述


2.四种读文件方式
(1)字符数组

char buf[1024] = {0};
while(ifs >> buf){
    cout << buf << endl;  //每个单词作为一行读进程序
}

(2)getline

char buf[1024] = {0};
while(ifs.getline(buf,sizeof(buf))){
    cout << buf << endl;
}

(3)string + getline

string buf;
while(getline(ifs,buf)){
    cout << buf << endl;
}

(4)单个字符读取,效率低,不推荐

char c;
while( (c = ifs.get()) != EOF){
    cout << c;
}

3.完整代码
注意先将上一节写好的文件,复制到指定位置才能读取文件

//文本文件 : 读文件
#include <iostream>
#include <fstream>   //1.包含头文件
#include <string>
using namespace std;

int main(){
    //2.创建流对象
    ifstream ifs;
    //3.打开文件,并判断是否打开成功
    ifs.open("text.txt",ios::in);
    if(!ifs.is_open()){
        cout << "文件打开失败" << endl;
        return 0;
    }
    //4.读数据 (四种方式)
     //①第一种
//    char buf[1024] = {0};
//    while(ifs >> buf){
//        cout << buf << endl;  //每个单词作为一行读进程序
//    }
     //②第二种
//    char buf[1024] = {0};
//    while(ifs.getline(buf,sizeof(buf))){
//        cout << buf << endl;
//    }
     //③第三种
//    string buf;
//    while(getline(ifs,buf)){
//        cout << buf << endl;
//    }
     //④第四种:一个字符一个字符读,效率低
    char c;
    while( (c = ifs.get()) != EOF){
        cout << c;
    }
    //5.关闭文件
    ifs.close();
    return 0;
}

4.总结
在这里插入图片描述



二、二进制文件

1.写二进制文件

1.关键步骤

ofs.write( (const char *)&p, sizeof(p));

在这里插入图片描述


2.完整代码:
运行成功后,自己到程序所在同级目录找到,写好的文件。

//写二进制文件
#include <iostream>
#include <fstream>  //1.包含头文件
using namespace std;

class Person{
public:
    char m_Name[64];
    int m_Age;
};

int main(){
    //2.创建流对象
    ofstream ofs;
    //3.打开文件
    ofs.open("person.txt",ios::out | ios::binary); //二进制方式写文件
    //4.写文件
    Person p = {"Edward",25};
    ofs.write( (const char *)&p, sizeof(Person)); //Person * 强转为 const char *
    //5.关闭文件
    ofs.close();
    return 0;
}

3.补充
②创建流对象 + ③打开文件,可以合并为一步:

ofstream ofs("person.txt",ios::out | ios::binary);

4.举例:把pdf文件的数据 用二进制方式 写入内存缓冲区buffer
[ofstream对象命名为outfile,创建流对象和打开文件合并为一步]

#include <fstream>
using namespace std;

ofstream outfile("/home/edward/YR/out.pdf", ios::binary);
outfile.write( buffer, length );



2.读二进制文件

1.关键步骤

ifs.read( (char *)&p, sizeof(p));

在这里插入图片描述


2.完整代码
同样,需要把上一节写好的二进制文件,放到本程序的同级目录下

//二进制读文件
#include <iostream>
#include <fstream>  //1.包含头文件
using namespace std;

class Person{
public:
    char m_Name[64];
    int m_Age;
};

int main(){
    //2.创建流对象
    ifstream ifs;
    //3.打开文件并判断
    ifs.open("person.txt",ios::in | ios::binary);
    if( !ifs.is_open()){
        cout << "文件打开失败" << endl;
        return 0;
    }
    //4.读文件
    Person p;
    ifs.read( (char*)&p, sizeof(Person));
    cout << "姓名: " << p.m_Name << endl << "年龄: " << p.m_Age << endl;
    //5.关闭文件
    ifs.close();

    return 0;
}

3.总结
在这里插入图片描述

  • 4
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

程序员爱德华

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

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

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

打赏作者

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

抵扣说明:

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

余额充值