C++——fstream文件读写操作

文件类型

  • 文本文件 - 文件以文本的ASCII码形式存储在计算机中

  • 二进制文件 - 文件以文本的二进制形式存储在计算机中,用户一般不能直接读懂它们

操作文件类

  • ofstream:写操作

  • ifstream: 读操作

  • fstream : 读写操作

文件打开方式

打开方式 解释
ios::in 为读文件而打开文件
ios::out 为写文件而打开文件
ios::ate 初始位置:文件尾
ios::app 追加方式写文件
ios::trunc 如果文件存在先删除,再创建
ios::binary 二进制方式

注意: 文件打开方式可以配合使用,利用|操作符

例如:用二进制方式写文件 ios::binary | ios:: out

文本文件读写代码示例

#include 
#include 
#include 
#include 
using namespace std;

int write_file(string file_path,string file_content){
    ofstream ofs;
    ofs.open(file_path,ios::out);
    ofs<

二进制文件读写代码示例

#include 
#include 
#include 
#include 
using namespace std;

// definded class
class Person{
public:
    char m_name[64];
    int m_age;
};

// write binary file
void write_binary_file(string file_path){
    // create ofs obj
    ofstream ofs(file_path,ios::out|ios::binary);
    //ofstream ofs;
    // open file
    //ofs.open(file_path,ios::binary);
    Person p = {"Sophia",20};
    // write
    ofs.write((const char *)&p, sizeof(p));
    // close file
    ofs.close();
}

Person p_read;
void read_binary_file(string file_path){
    // create stream aoj
    ifstream ifs(file_path,ios::in|ios::binary);
    // read
    ifs.read((char *)&p_read, sizeof(Person));
    // cout
    cout<

你可能感兴趣的:(C/C++,c++)