C++ 文件操作

C++中对文件操作需要包含头文件 ==< fstream >==

文件类型分为两种:

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

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

操作文件的三大类:

1 . ofstream:写操作

2 . ifstream: 读操作

3 . fstream : 读写操作

1.文本文件

写文件

写文件步骤如下:

1 . 包含头文件

复制代码
#include<fstream>

2 . 创建流对象

ofstream ofs;

3 . 打开文件

ofs.open("文件路径",打开方式);

4 . 写数据

ofs << "写入的数据";

5 . 关闭文件

ofs.close();

文件打开方式:

文件打开方式:

ios::in 为读文件而打开文件

ios::out 为写文件而打开文件

ios::ate 初始位置:文件尾

ios::app 追加方式写文件

ios::trunc 如果文件存在先删除,再创建

ios::binary 二进制方式

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

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

读文件

读文件与写文件步骤相似,但是读取方式相对于比较多

读文件步骤如下:

1 . 包含头文件

#include

2 . 创建流对象

ifstream ifs;

3 . 打开文件并判断文件是否打开成功

ifs.open("文件路径",打开方式);

4 . 读数据

四种方式读取

5 . 关闭文件

ifs.close();

cpp 复制代码
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main() {
//    ofstream outFile;
//    outFile.open("./123test.txt",ios::out);
//    outFile<<"Hello World!"<<endl;
//    outFile<<"Welcome to C++ Programming!"<<endl;
//    outFile.close();
//    cout<<"File written successfully!"<<endl;


    ifstream inFile;
    inFile.open("./123test.txt",ios::in);
    if(!inFile.is_open()){
        cout<<"Error! File not found!"<<endl;
    }
    char c[1024];
    while(inFile.getline(c,sizeof(c))){
        cout<<c;
    }
    return 0;
}

读文件的方式有很多:

cpp 复制代码
//第一种方式
//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;
}
ifs.close();

总结:

● 读文件可以利用 ifstream ,或者fstream类

● 利用is_open函数可以判断文件是否打开成功

● close 关闭文件

2.二进制文件

写文件

以二进制的方式对文件进行读写操作

打开方式要指定为 ==ios::binary==

二进制方式写文件主要利用流对象调用成员函数write

函数原型 : ostream& write(const char * buffer,int len);

参数解释:字符指针buffer指向内存中一段存储空间。len是读写的字节数

cpp 复制代码
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class Person{
    public:
    char name[20];
    int age;
};
int main() {
//  1.引入头文件
//  2.创建输出流对象
    ofstream ofs("Person.txt", ios::out | ios::binary);
//    或者  ofstream ofs;
//    ofs.open("Person.txt", ios::out | ios::binary);
//    3.创建对象
    Person p={"David", 25};
//    4.写入文件
    ofs.write((const char *)&p, sizeof(p));
//    5.关闭文件
    ofs.close();
    return 0;
}

读文件

二进制方式读文件主要利用流对象调用成员函数read

函数原型: istream& read(char *buffer,int len);

参数解释:字符指针buffer指向内存中一段存储空间。len是读写的字节数

cpp 复制代码
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class Person{
    public:
    char name[20];
    int age;
};
int main() {
  1.引入头文件
  2.创建输出流对象
//    ofstream ofs("Person.txt", ios::out | ios::binary);
    或者  ofstream ofs;
    ofs.open("Person.txt", ios::out | ios::binary);
    3.创建对象
//    Person p={"David", 25};
    4.写入文件
//    ofs.write((const char *)&p, sizeof(p));
    5.关闭文件
//    ofs.close();


//   1.引入头文件
//   2.创建输入流对象
     ifstream  ifs("Person.txt", ios::in | ios::binary);
     if(!ifs.is_open()){
            cout<<"文件打开失败"<<endl;
            return 0;
     }
//   3.创建对象
     Person p;
//     4.读取文件
     ifs.read((char *)&p,sizeof(p));
//     5.关闭文件
     cout<<"姓名:"<<p.name<<" 年龄:"<<p.age<<endl;
    ifs.close();
    return 0;
}

文件输入流对象 可以通过read函数,以二进制方式读数据

相关推荐
通信仿真实验室25 分钟前
(10)MATLAB莱斯(Rician)衰落信道仿真1
开发语言·matlab
勿语&28 分钟前
Element-UI Plus 暗黑主题切换及自定义主题色
开发语言·javascript·ui
家有狸花2 小时前
VSCODE驯服日记(三):配置C++环境
c++·ide·vscode
dengqingrui1232 小时前
【树形DP】AT_dp_p Independent Set 题解
c++·学习·算法·深度优先·图论·dp
C++忠实粉丝2 小时前
前缀和(8)_矩阵区域和
数据结构·c++·线性代数·算法·矩阵
ZZZ_O^O3 小时前
二分查找算法——寻找旋转排序数组中的最小值&点名
数据结构·c++·学习·算法·二叉树
吾爱星辰4 小时前
Kotlin 处理字符串和正则表达式(二十一)
java·开发语言·jvm·正则表达式·kotlin
ChinaDragonDreamer4 小时前
Kotlin:2.0.20 的新特性
android·开发语言·kotlin
IT良4 小时前
c#增删改查 (数据操作的基础)
开发语言·c#
小飞猪Jay5 小时前
C++面试速通宝典——13
jvm·c++·面试