91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中如何實現I/O文件讀寫操作

發布時間:2020-07-17 11:36:21 來源:億速云 閱讀:240 作者:小豬 欄目:編程語言

小編這次要給大家分享的是C++中如何實現I/O文件讀寫操作,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

IO: 向設備輸入數據和輸出數據C++的IO流

C++中如何實現I/O文件讀寫操作

c++中,必須通過特定的已經定義好的類, 來處理IO(輸入輸出)

文件流: 對文件進行讀寫操作
頭文件:
類庫:
ifstream 對文件輸入(讀文件)
ofstream 對文件輸出(寫文件)
fstream 對文件輸入或輸出

//寫文件

#include <fstream>
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string name;
	int age;
	ofstream outfile; //也可以使用fstream, 但是fstream的默認打開方式不截斷文件長度

	// ofstream的默認打開方式是, 截斷式寫入 ios::out | ios::trunc
	// fstream的默認打開方式是, 截斷式寫入  ios::out
	// 建議指定打開方式
	outfile.open("user.txt", ios::out | ios::trunc);

	while (1) {
		cout << "請輸入姓名: [ctrl+z退出] ";
		cin >> name;
		if (cin.eof()) { //判斷文件是否結束
			break;
		}
		outfile << name << "\t";

		cout << "請輸入年齡: ";
		cin >> age; 
		outfile << age << endl; //文本文件寫入
	}

	// 關閉打開的文件
	outfile.close();

	system("pause");
	return 0;
}

//讀文件

#include <fstream>
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string name;
	int age;
	ifstream infile;
	infile.open("user.txt");

	while (1) {
		infile >> name;
		if (infile.eof()) { //判斷文件是否結束
			break;
		}
		cout << name << "\t";

		infile >> age;
		cout << age << endl; 
	}

	// 關閉打開的文件
	infile.close();

	system("pause");
	return 0;
}

對二進制文件流讀寫

文本文件和二進制文件的區別?

文本文件: 寫數字1, 實際寫入的是 ‘1'
二進制文件:寫數字1, 實際寫入的是 整數1(4個字節,最低字節是1, 高3個字節都是0)
寫字符‘R'實際輸入的還是‘R'
寫二進制文件
使用文件流對象的write方法寫入二進制數據.

//寫二進制文件

#include <fstream>
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string name;
	int age;
	ofstream outfile;
	outfile.open("user.dat", ios::out | ios::trunc | ios::binary);

	while (1) {
		cout << "請輸入姓名: [ctrl+z退出] ";
		cin >> name;
		if (cin.eof()) { //判斷文件是否結束
			break;
		}
		outfile << name << "\t";

		cout << "請輸入年齡: ";
		cin >> age; 
		//outfile << age << endl; //會自動轉成文本方式寫入
		outfile.write((char*)&age, sizeof(age));
	}

	// 關閉打開的文件
	outfile.close();

	system("pause");
	return 0;
}

//讀二進制文件

使用文件流對象的read方法.

#include <fstream>
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string name;
	int age;
	ifstream infile;
	infile.open("user.dat", ios::in | ios::binary);

	while (1) {
		infile >> name;
		if (infile.eof()) { //判斷文件是否結束
			break;
		}
		cout << name << "\t";
	
		// 跳過中間的制表符
		char tmp;
		infile.read(&tmp, sizeof(tmp)); 

		//infile >> age; //從文本文件中讀取整數, 使用這個方式
		infile.read((char*)&age, sizeof(age));
		cout << age << endl; //文本文件寫入
	}

	// 關閉打開的文件
	infile.close();

	system("pause");
	return 0;
}

對文件流按格式讀寫取數據

使用stringstream

#include <fstream>
#include <iostream>
#include <string>
#include <sstream>

using namespace std;

int main()
{
	string name;
	int age;
	ofstream outfile;
	outfile.open("user.txt", ios::out | ios::trunc);

	while (1) {
		cout << "請輸入姓名: [ctrl+z退出] ";
		cin >> name;
		if (cin.eof()) { //判斷文件是否結束
			break;
		}

		cout << "請輸入年齡: ";
		cin >> age;
		
		stringstream s;
		s << "name:" << name << "\t\tage:" << age << endl;
		outfile << s.str();
	}

	// 關閉打開的文件
	outfile.close();

	system("pause");
	return 0;
}

按指定格式讀文件

沒有優雅的C++解決方案, 使用C語言的sscanf

#include <fstream>
#include <iostream>
#include <string>
#include <sstream>
#include <Windows.h>

using namespace std;

int main(void)
{
	char name[32];
	int age;
	string line;
	ifstream infile;
	infile.open("user.txt");

	while (1) {
		getline(infile, line);
		if (infile.eof()) { //判斷文件是否結束
			break;
		}

		sscanf_s(line.c_str(), "姓名:%s 年齡:%d", name, sizeof(name),&age);
		cout << "姓名:" << name << "\t\t年齡:" << age << endl;
	}

	infile.close();

	system("pause");
	return 0;
}

文件流的狀態檢查

s.is_open( )
文件流是否打開成功,

s.eof( ) 流s是否結束

s.fail( )
流s的failbit或者badbit被置位時, 返回true
failbit: 出現非致命錯誤,可挽回, 一般是軟件錯誤
badbit置位, 出現致命錯誤, 一般是硬件錯誤或系統底層錯誤, 不可挽回

s.bad( )
流s的badbit置位時, 返回true

s.good( )
流s處于有效狀態時, 返回true

s.clear( )
流s的所有狀態都被復位

文件流的定位

seekg( off_type offset, //偏移量
ios::seekdir origin ); //起始位置
作用:設置輸入流的位置
參數1: 偏移量
參數2: 相對位置
beg 相對于開始位置
cur 相對于當前位置
end相對于結束位置

讀取當前程序的最后50個字符

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main(void) {
	ifstream infile;

	infile.open("定位.cpp");
	if (!infile.is_open()) {
		return 1;
	}

	infile.seekg(-50, infile.end);
	while (!infile.eof()) {
		string line;
		getline(infile, line);
		cout << line << endl;
	}

	infile.close();

	system("pause");
	return 0;
}

//tellg返回該輸入流的當前位置(距離文件的起始位置的偏移量)

獲取當前文件的長度

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main(void) {
	ifstream infile;

	infile.open("定位.cpp");
	if (!infile.is_open()) {
		return 1;
	}

	// 先把文件指針移動到文件尾
	infile.seekg(0, infile.end);

	int len = infile.tellg();
	cout << "len:" << len;

	infile.close();
	system("pause");
	return 0;
}

seekp設置該輸出流的位置

先向新文件寫入:“123456789”
然后再在第4個字符位置寫入“ABC”

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main(void) {
	ofstream outfile;

	outfile.open("test.txt");
	if (!outfile.is_open()) {
		return 1;
	}

	outfile << "123456789";

	outfile.seekp(4, outfile.beg);
	outfile << "ABC";

	outfile.close();
	system("pause");
	return 0;
}

計算機英語

ioinput output的簡寫
輸出輸出
iosC++ 輸出輸出流的基類
stream流
istream輸入流
ostream輸出流
iostream輸出輸出流
fstreamfile stream的簡寫 文件流
ifstream文件輸入流
ofstream文件輸出流
stringstream字符串流
istringstream字符串輸入流
ostringstream字符串輸出流
seek尋找
seekg 設置輸入流的位置
seekp設置輸出流的位置
tell告訴
tellg返回當前流的位置
open打開
is_open是否打開成功
eofend of file的簡寫
文件結束
good好的
bad壞的
fail失敗

常見錯誤總結

1.文件沒有關閉
文件沒有關閉, close(),可能導致寫文件失敗
2.文件打開方式不合適
3.在VS2015的部分版本中,當sscanf和sscanf_s的格式字符串中含有中文時,可能會讀取失敗。
在vs2019中未發現該類問題。

看完這篇關于C++中如何實現I/O文件讀寫操作的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临漳县| 南部县| 浠水县| 扎囊县| 黔西县| 舟曲县| 哈巴河县| 都江堰市| 平陆县| 班戈县| 枝江市| 奈曼旗| 盘山县| 东明县| 达州市| 遵义县| 蛟河市| 丹阳市| 乃东县| 马龙县| 河源市| 大邑县| 理塘县| 新龙县| 云梦县| 长春市| 昌平区| 富川| 桐梓县| 蒙阴县| 同江市| 偏关县| 秦安县| 钟祥市| 大宁县| 蕲春县| 磴口县| 龙门县| 阿拉善盟| 叙永县| 博客|