C++編程語言書寫方式靈活,可以幫助編程人員輕松的實現各種功能需求。我們在這裡以一段代碼示例來詳細介紹一下C++讀寫文本文件的實現方法,希望大家可以根據這裡介紹的方法充分掌握這一基礎應用技巧。
C++讀寫文本文件代碼示例如下:
- #include < iostream>
- #include < fstream>
- using namespace std;
- int main()
- {
- const char filename[] = "mytext.txt";
- ofstream o_file;
- ifstream i_file;
- string out_text;
- //寫
- o_file.open(filename);
- for (int i = 1; i < = 10; i++)
- {
- o_file < < "第" < < i < < "行"n"; //將內容寫入到文本文件中
- }
- o_file.close();
- //讀
- i_file.open(filename);
- if (i_file.is_open())
- {
- while (i_file.good())
- {
- i_file >> out_text; //將讀取的內容存儲到變量out_text中
- cout < < out_text < < endl;
//在控制台輸出讀取的內容。為什麼最後一行的內容會出現兩次- }
- }
- else
- cout < < "打開文件:" < < filename < < " 時出錯!";
- i_file.close();
- system("PAUSE");
- return 0;
- }
- #include "stdafx.h"
- #include < iostream>
- #include < fstream>
- #include < string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- const char filename[]="test.doc";
- ofstream o_file;
/* 輸出流:將數據從內存輸出其中ofstream是將數據輸出到文件,
因此對於文件來說是“寫”*/- ifstream i_file;
/*將數據輸入到內存,其中ifstream是說輸入的數據在文件中,
因此對於文件來說是“讀”*/- string out_text;
- //寫
- o_file.open(filename);
- for(int i =0;i< =12;i++)
- {
- o_file< < "第"< < i< < "行"n";//將內容寫入文本
- }
- o_file.close();
- //讀
- i_file.open(filename);
- if(i_file.is_open())
- {
- while(i_file>>out_text)
- {
- cout < < out_text < < endl;
- }
- }
- else
- cout< < "打開文件:"< < filename< < "時出錯!";
- i_file.close();
- system("PAUSE");
- return 0;
- }
C++讀寫文本文件相關操作方法就為大家介紹到這裡。