您的位置:

C++文件写入操作详解

一、文件写入的基本流程

在进行文件写入操作时,首先需要创建一个ofstream对象,并打开对应的文件。打开文件的方式有两种:覆盖原有文件内容和追加文件内容。当我们创建好ofstream对象并打开对应文件后,就可以向文件中写入数据了。


#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    //创建ofstream对象-file1.txt将在当前程序所在目录下创建
    ofstream ofs1("file1.txt",ofstream::out);
    if(!ofs1)
    {
        cout<<"create file failed"<<endl;
        return -1;
    }
    //覆盖模式写文件
    ofs1<<"Hello world"<<endl;
    ofs1.close();
    //打印file1.txt文件内容
    char buf[64] = {0};
    ifstream ifs1("file1.txt",ifstream::in);
    while(ifs1.getline(buf,64))
    {
        cout<<buf<<endl;
    }
    ifs1.close();

    //创建ofstream对象-file2.txt将在当前程序所在目录下创建
    ofstream ofs2("file2.txt",ofstream::out|ofstream::app);
    if(!ofs2)
    {
        cout<<"create file failed"<<endl;
        return -1;
    }
    //追加模式写文件
    ofs2<<"Append mode"<<endl;
    ofs2.close();
    //打印file2.txt文件内容
    ifstream ifs2("file2.txt",ifstream::in);
    while(ifs2.getline(buf,64))
    {
        cout<<buf<<endl;
    }
    ifs2.close();

    return 0;
}

二、从标准输入流中读入并写入到文件中

我们可以通过从标准输入流中读取用户输入的数据,然后写入到文件中。这种方式可以方便地实现文件内容的自定义输入。


#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    ofstream ofs("file.txt",ofstream::out);
    if(!ofs)
    {
        cout<<"Create file failed"<<endl;
        return -1;
    }
    //从标准输入流中读取并写入到文件中
    string str;
    while(getline(cin,str))
    {
        ofs<<str<<endl;
    }
    ofs.close();
    return 0;
}

三、结构体数组写入到文件中

在实际应用中,我们经常会将结构体数组中的元素写入到文件中。这需要使用流提取运算符和流插入运算符来实现。


#include<iostream>
#include<fstream>
#include<string>
using namespace std;
//定义结构体
struct Student
{
    string name;
    int age;
    float score;
};
int main()
{
    Student stu[2] = { {"Tom",18,80.0},{"Jerry",20,85.5} };
    ofstream ofs("file.txt",ofstream::out);
    if(!ofs)
    {
        cout<<"Create file failed"<<endl;
        return -1;
    }
    //将结构体数组写入到文件中
    for(int i=0;i<2;++i)
    {
        ofs<<stu[i].name<<", "<<stu[i].age<<", "<<stu[i].score<<endl;
    }
    ofs.close();
    return 0;
}

四、二进制文件写入

除了文本文件,我们还可以将数据以二进制的方式写入到文件中。这需要使用ofstream类对象的write方法,并传入待写入数据的地址和长度。


#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    double scores[] = {80.0,85.5,90.0};
    ofstream ofs("file.dat",ofstream::out|ofstream::binary);
    if(!ofs)
    {
        cout<<"Open file failed"<<endl;
        return -1;
    }
    //将数组写入二进制文件
    ofs.write(reinterpret_cast<const char*>(scores),sizeof(scores));
    ofs.close();
    //读取二进制文件中的数据
    ifstream ifs("file.dat",ifstream::in|ifstream::binary);
    double score;
    while(ifs.read(reinterpret_cast<char*>(&score),sizeof(score)))
    {
        cout<<score<<"\t";
    }
    ifs.close();
    return 0;
}

五、结构体写入二进制文件

我们可以将结构体作为一个整体写入到二进制文件中,这需要使用write方法,并传入待写入结构体的地址和长度。


#include<iostream>
#include<fstream>
#include<string>
using namespace std;
//定义结构体
struct Student
{
    string name;
    int age;
    float score;
};
int main()
{
    Student stu[2] = {{"Tom",18,80.0},{"Jerry",20,85.5}};
    ofstream ofs("file.dat",ofstream::out|ofstream::binary);
    if(!ofs)
    {
        cout<<"Open file failed"<<endl;
        return -1;
    }
    //将结构体数组写入到二进制文件
    ofs.write(reinterpret_cast<const char*>(&stu),sizeof(stu));
    ofs.close();
    //读取二进制文件中的数据
    ifstream ifs("file.dat",ifstream::in|ifstream::binary);
    Student stu_new[2];
    ifs.read(reinterpret_cast<char*>(&stu_new),sizeof(stu_new));
    ifs.close();
    //输出读取的结果
    for(int i=0;i<2;++i)
    {
        cout<<stu_new[i].name<<":"<<stu_new[i].age<<":"<<stu_new[i].score<<endl;
    }
    return 0;
}