IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> C++文件的操作 -> 正文阅读

[移动开发]C++文件的操作

文件和流

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);//向文件写入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;
}

文件的随机读写

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-08-06 10:55:38  更:2022-08-06 10:59:53 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 4:27:27-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码