文件和流
C++把每一个文件都看成一个有序的字节流,每一个文件都以EOF作为文件结束符。
文件的打开与关闭
文件流分为三类:输入文件流、输出文件流、I/O文件流,对应为ifstream、ofstream和fstream。
ifstream ifile;
ofstream ofile;
fstream iofile;
生命文件流之后就可以用open() 函数打开。
void open (const char* filename,int mode, int prot=filebuf::openprot);
参数:
filename 操作文件名
mode 打开文件的方式
prot 打开文件的属性
mode取值必须是以下值之一:
ios::in 打开输入文件。将这种方式应用于ofstream,可以使现存文件内容不被清除。
ios::out 打开输出文件。将这种方式应用于ofstream,而且没有使用ios::app、ios::ate或ios::in时,意味着使用了ios::trunc模式(如果文件存在则清楚原文件内容)。
ios::ate 打开已存在文件,并指向末尾
ios::app 打开一个仅用于添加的输出文件
ios::trunc 如果文件已存在则先删除该文件
ios::nocreate 如果文件不存在则打开失败,不创建
ios::noreplace 如果文件存在则打开失败
ios::binary 二进制方式打开文件
对于ifstream默认的mode参数是ios::in,对于ofstream默认的mode参数是ios::out。参数mode的符号常量通常可以组合使用,如:ios::binary|ios::in ,表示只读方式打开一个二进制文件。
参数prot的取值如下:
0 普通文件
1 只读文件
2 隐含文件
4 系统文件
调用方式:
ifstream ifile;
ifile.open("c:\\vc\\abc.txt", ios::ate);
ofstream ofile;
ofile.open("c:\\vc\\abc.txt", ios::ate);
或者
ifstream ifile("c:\\vc\\abc.txt", ios::ate);
ofstream ofile("c:\\vc\\abc.txt", ios::ate);
判断文件是否打开成功
ifstream ifile;
ifile.open("c:\\vc\\abc.txt", ios::ate);
if(!ifile)
{
//打开失败
}
//继续正常操作
文本文件的读写
文本文件只得是以字符方式存放的数据,只使用于解释为ASCII码的文件。
读文本文件的几种方法
(1)使用流运算符>> 直接读取 这个符号将完成文件的字符转换工作,使用流运算符>> 读取字符时,遇到换行或者空格将终止。
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12];
ifstream ifile("C:\\VS2013Projects\\test.txt", ios::in);
if (!ifile)
{
cout << "test文件不能打开" << endl;
return 0;
}
ifile >> str;
cout << "str:" << str << endl;
ifile.close();
return 1;
}
(2)使用流成员函数读取文件数据 常用的流成员函数有get、getline和read。get功能与提取运算符">>"相似,不同之处是可以读取包含空格的字符。
int get();
istream& get (char& c);
istream& get (char* s, streamsize n);
istream& get (char* s, streamsize n, char delim);
istream& get (streambuf& sb);
istream& get (streambuf& sb, char delim);
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char ch;
int n = 0;
ifstream ifile("C:\\VS2013Projects\\test.txt", ios::out);
if (!ifile)
{
cout << "test文件不能打开" << endl;
return 0;
}
while (!ifile.eof() && n < 12)
{
n++;
ch = ifile.get();
cout << ch;
}
ifile.close();
return 1;
}
getline用法
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12];
ifstream ifile("C:\\VS2013Projects\\test.txt", ios::out);
if (!ifile)
{
cout << "test文件不能打开" << endl;
return 0;
}
ifile.getline(str,12);
cout << str;
ifile.close();
return 1;
}
read函数用法
istream& read (char* s, streamsize n);
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12];
ifstream ifile("C:\\VS2013Projects\\test.txt", ios::out);
if (!ifile)
{
cout << "test文件不能打开" << endl;
return 0;
}
ifile.read(str, 12);
cout << str;
ifile.close();
return 1;
}
写文本文件的几种方法
(1)使用流运算符"<<"
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12] = "Great Wall";
ofstream ofile("C:\\VS2013Projects\\test.txt", ios::in);
if (!ofile)
{
cout << "test文件不能打开" << endl;
return 0;
}
ofile << str;
ofile.close();
return 1;
}
(2)使用流成员函数 常用的流成员函数有put和write:
ostream& put (char c);
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12] = "Great Wall";
char *p = str;
ofstream ofile("C:\\VS2013Projects\\test.txt", ios::in|ios::trunc);
if (!ofile)
{
cout << "test文件不能打开" << endl;
return 0;
}
while (*p!='\0')
{
ofile.put(*p);
p++;
}
ofile.close();
return 1;
}
ostream& write (const char* s, streamsize n);
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char str[12] = "Great Wall";
ofstream ofile("C:\\VS2013Projects\\test.txt", ios::in|ios::trunc);
if (!ofile)
{
cout << "test文件不能打开" << endl;
return 0;
}
ofile.write(str, 12);
ofile.close();
return 1;
}
二进制文件的读写
二进制文件不同于文本文件,读写二进制的字符不需做任何转换,读写的字符与文件之间是完全一致的。二进制文件读写一般用read()/write()函数,因为他们有每次读写字符的参数。 需要注意的是,他们的第一个参数是char*,因此需要强制转换为该指针类型。
#include <iostream>
#include <fstream>
using namespace std;
const int N = 3;
struct Date{
int d, m, y;
};
int main()
{
Date date[N] = { { 1, 2, 2022 }, { 10, 12, 2022 }, { 12, 12, 2022 } };
ofstream ofile("C:\\VS2013Projects\\data.data", ios::binary);
if (!ofile)
{
cout << "文件不能打开" << endl;
return 0;
}
for (int i = 0; i < N; i++)
{
ofile.write((char *)&date[i], sizeof(Date));
}
ofile.close();
ifstream ifile("C:\\VS2013Projects\\data.data", ios::binary);
if (!ifile)
{
cout << "文件不能打开" << endl;
return 0;
}
Date dt;
for (int i = 0; i < N; i++)
{
ifile.read((char *)&dt, sizeof(Date));
cout << dt.d << " " << dt.m << " " << dt.y << endl;
}
ifile.close();
return 1;
}
文件的随机读写
|