5.26 C++文件读写操作
Posted galileo9527
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.26 C++文件读写操作相关的知识,希望对你有一定的参考价值。
程序运行时产生的数据都属于临时数据,程序—旦运行结束都会被释放通过文件可以将数据持久化
C++中对文件操作需要包含头文件<fstream>
文件类型分为两种:
1.文本文件:文件以文本的ASCII码形式存储在计算机中
2.二进制文件:文件以文本的二进制形式存储在计算机中
操作文件的三大类:
ofstream:写操作
ifstream:读操作
fstream :读写操作
C++文件操作-文本文件-写文件
写文件步骤如下:
1.包含头文件
#include <fstream>
1
2.创建流对象
ofstream ofs;
1
3.打开文件
ofs.open(“文件路径",打开方式);
1
4.写数据
ofs <<"写入的数据";
1
5.关闭文件
ofs.close();
1
打开方式
打开方式 解释
ios::in 为读文件而打开文件
ios::out 为写文件而打开文件
ios::ate 初始位置:文件尾
ios::app 追加方式写文件
ios::trunc 如果文件存在先删除,再创建
ios::binary 二进制方式
注意:文件打开方式可以配合使用,利用|操作符
例如:用二进制方式写文件ios::binary | ios::out
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
// 文本文件 写文件
int main()
// 2.创建流对象
ofstream ofs;
// 3.指定打开方式
ofs.open("test.txt", ios::out);
// 4.写内容
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
// 5.关闭文件
ofs.close();
return 0;
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
// 文本文件 写文件
int main()
// 2.创建流对象
ofstream ofs;
// 3.指定打开方式
ofs.open("test.txt", ios::out);
// 4.写内容
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
ofs << "姓名:major" << endl;
// 5.关闭文件
ofs.close();
return 0;
文件操作必须包含头文件 fstream
读文件可以利用ofstream ,或者fstream类
打开文件时候需要指定操作文件的路径,以及打开方式
利用<<可以向文件中写数据
操作完毕,要关闭文件
61.C++文件操作-文本文件-读文件
读文件步骤如下:
1.包含头文件
#include <fstream>
1
2.创建流对象
ifstream ifs;
1
3.打开文件并判断文件是否打开成功
ifs.open("文件路径",打开方式);
1
4.读数据
四种方式读取
1
5.关闭文件
ifs.close();
1
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
int main()
// 2.创建流对象
ifstream ifs;
// 3.指定打开方式
ifs.open("test.txt", ios::in);
// 4.读内容
if (!ifs.is_open())
cout << "文件打开失败!" << endl;
// 第一种
char buf[1024] = 0 ;
while (ifs >> buf)
cout << buf << endl;
//cout << "****************************" << 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) // EOF = end of file
//
// cout << c ;
//
// 5.关闭文件
ifs.close();
return 0;
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
int main()
// 2.创建流对象
ifstream ifs;
// 3.指定打开方式
ifs.open("test.txt", ios::in);
// 4.读内容
if (!ifs.is_open())
cout << "文件打开失败!" << endl;
// 第一种
char buf[1024] = 0 ;
while (ifs >> buf)
cout << buf << endl;
//cout << "****************************" << 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) // EOF = end of file
//
// cout << c ;
//
// 5.关闭文件
ifs.close();
return 0;
62.C++文件操作-二进制文件-写文件
以二进制的方式对文件进行读写操作
打开方式要指定为ios:binary
二进制方式写文件主要利用流对象调用成员函数write
函数原型:ostream& write(const char * buffer,int len);
参数解释:字符指针buffer指向内存中一段存储空间。len是读写的字节数
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
class Person
public:
char my_name[64];
int my_age;
;
int main()
// 2.创建流对象
ofstream ofs("person.txt", ios::out | ios::binary);
// 3.指定打开方式
//ofs.open("test.txt", ios::out|ios::binary);
// 4.写内容
Person p = "major",18 ;
ofs.write((const char*)&p, sizeof(Person));
// 5.关闭文件
ofs.close();
return 0;
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
class Person
public:
char my_name[64];
int my_age;
;
int main()
// 2.创建流对象
ofstream ofs("person.txt", ios::out | ios::binary);
// 3.指定打开方式
//ofs.open("test.txt", ios::out|ios::binary);
// 4.写内容
Person p = "major",18 ;
ofs.write((const char*)&p, sizeof(Person));
// 5.关闭文件
ofs.close();
return 0;
文件输出流对象可以通过write函数,以二进制方式写数据
63.C++文件操作-二进制文件-读文件
二进制方式读文件主要利用流对象调用成员函数read
函数原型: istream& read(char *buffer,int len);
参数解释:字符指针buffer指向内存中一段存储空间。len是读写的字节数
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
class Person
public:
char my_name[64];
int my_age;
;
int main()
// 2.创建流对象
ifstream ifs;
// 3.指定打开方式
ifs.open("person.txt", ios::in|ios::binary);
if (!ifs.is_open())
cout << "文件打开失败!" << endl;
// 4.读内容
Person p;
ifs.read((char*)&p, sizeof(Person));
cout << "姓名:" << p.my_name << "年龄:" << p.my_age << endl;
// 5.关闭文件
ifs.close();
return 0;
#include <iostream>
using namespace std;
#include <fstream> // 1.包含头文件 fstream
#include <string>
// 文本文件 读文件
class Person
public:
char my_name[64];
int my_age;
;
int main()
// 2.创建流对象
ifstream ifs;
// 3.指定打开方式
ifs.open("person.txt", ios::in|ios::binary);
if (!ifs.is_open())
cout << "文件打开失败!" << endl;
// 4.读内容
Person p;
ifs.read((char*)&p, sizeof(Person));
cout << "姓名:" << p.my_name << "年龄:" << p.my_age << endl;
// 5.关闭文件
ifs.close();
return 0;
读写文件
读写文件是最常见的IO操作。Python内置了读写文件的函数,用法和C是兼容的。
读写文件前,我们先必须了解一下,在磁盘上读写文件的功能都是由操作系统提供的,现代操作系统不允许普通的程序直接操作磁盘,所以,读写文件就是请求操作系统打开一个文件对象(通常称为文件描述符),然后,通过操作系统提供的接口从这个文件对象中读取数据(读文件),或者把数据写入这个文件对象(写文件)。
读文件
要以读文件的模式打开一个文件对象,使用Python内置的open()
函数,传入文件名和标示符:
>>> f = open(‘/Users/michael/test.txt‘, ‘r‘)
标示符‘r‘表示读,这样,我们就成功地打开了一个文件。
如果文件不存在,open()
函数就会抛出一个IOError
的错误,并且给出错误码和详细的信息告诉你文件不存在:
>>> f=open(‘/Users/michael/notfound.txt‘, ‘r‘) Traceback (most recent call last): File "<stdin>", line 1, in <module> IOError: [Errno 2] No such file or directory: ‘/Users/michael/notfound.txt‘
如果文件打开成功,接下来,调用read()
方法可以一次读取文件的全部内容,Python把内容读到内存,用一个str
对象表示:
>>> f.read()‘Hello, world!‘
最后一步是调用close()
方法关闭文件。文件使用完毕后必须关闭,因为文件对象会占用操作系统的资源,并且操作系统同一时间能打开的文件数量也是有限的:
>>> f.close()
由于文件读写时都有可能产生IOError
,一旦出错,后面的f.close()
就不会调用。所以,为了保证无论是否出错都能正确地关闭文件,我们可以使用try ... finally
来实现:
try: f = open(‘/path/to/file‘, ‘r‘) print f.read()finally: if f: f.close()
但是每次都这么写实在太繁琐,所以,Python引入了with
语句来自动帮我们调用close()
方法:
with open(‘/path/to/file‘, ‘r‘) as f: print f.read()
这和前面的try ... finally
是一样的,但是代码更佳简洁,并且不必调用f.close()
方法。
调用read()
会一次性读取文件的全部内容,如果文件有10G,内存就爆了,所以,要保险起见,可以反复调用read(size)
方法,每次最多读取size个字节的内容。另外,调用readline()
可以每次读取一行内容,调用readlines()
一次读取所有内容并按行返回list
。因此,要根据需要决定怎么调用。
如果文件很小,read()
一次性读取最方便;如果不能确定文件大小,反复调用read(size)
比较保险;如果是配置文件,调用readlines()
最方便:
for line in f.readlines(): print(line.strip()) # 把末尾的‘\n‘删掉
file-like Object
像open()
函数返回的这种有个read()
方法的对象,在Python中统称为file-like Object。除了file外,还可以是内存的字节流,网络流,自定义流等等。file-like Object不要求从特定类继承,只要写个read()
方法就行。
StringIO
就是在内存中创建的file-like Object,常用作临时缓冲。
二进制文件
前面讲的默认都是读取文本文件,并且是ASCII编码的文本文件。要读取二进制文件,比如图片、视频等等,用‘rb‘
模式打开文件即可:
>>> f = open(‘/Users/michael/test.jpg‘, ‘rb‘)>>> f.read()‘\xff\xd8\xff\xe1\x00\x18Exif\x00\x00...‘ # 十六进制表示的字节
字符编码
要读取非ASCII编码的文本文件,就必须以二进制模式打开,再解码。比如GBK编码的文件:
>>> f = open(‘/Users/michael/gbk.txt‘, ‘rb‘)>>> u = f.read().decode(‘gbk‘)>>> uu‘\u6d4b\u8bd5‘>>> print u 测试
如果每次都这么手动转换编码嫌麻烦(写程序怕麻烦是好事,不怕麻烦就会写出又长又难懂又没法维护的代码),Python还提供了一个codecs
模块帮我们在读文件时自动转换编码,直接读出unicode:
import codecswith codecs.open(‘/Users/michael/gbk.txt‘, ‘r‘, ‘gbk‘) as f: f.read() # u‘\u6d4b\u8bd5‘
写文件
写文件和读文件是一样的,唯一区别是调用open()
函数时,传入标识符‘w‘
或者‘wb‘
表示写文本文件或写二进制文件:
>>> f = open(‘/Users/michael/test.txt‘, ‘w‘)>>> f.write(‘Hello, world!‘)>>> f.close()
你可以反复调用write()
来写入文件,但是务必要调用f.close()
来关闭文件。当我们写文件时,操作系统往往不会立刻把数据写入磁盘,而是放到内存缓存起来,空闲的时候再慢慢写入。只有调用close()
方法时,操作系统才保证把没有写入的数据全部写入磁盘。忘记调用close()
的后果是数据可能只写了一部分到磁盘,剩下的丢失了。所以,还是用with
语句来得保险:
with open(‘/Users/michael/test.txt‘, ‘w‘) as f: f.write(‘Hello, world!‘)
要写入特定编码的文本文件,请效仿codecs
的示例,写入unicode,由codecs
自动转换成指定编码。
小结
在Python中,文件读写是通过open()
函数打开的文件对象完成的。使用with
语句操作文件IO是个好习惯。
本文出自 “为了明日” 博客,请务必保留此出处http://andyboge.blog.51cto.com/6809119/1980341
以上是关于5.26 C++文件读写操作的主要内容,如果未能解决你的问题,请参考以下文章
C++文件读写操作如何统计文本的行数及如何读取文件某一行内容