您好,登錄后才能下訂單哦!
C++中怎么讀寫文本文件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
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"; //將內(nèi)容寫入到文本文件中
}
o_file.close();
//讀
i_file.open(filename);
if (i_file.is_open())
{
while (i_file.good())
{
i_file >> out_text; //將讀取的內(nèi)容存儲到變量out_text中
cout < < out_text < < endl;
//在控制臺輸出讀取的內(nèi)容。為什么***一行的內(nèi)容會出現(xiàn)兩次}
}
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;
/* 輸出流:將數(shù)據(jù)從內(nèi)存輸出其中ofstream是將數(shù)據(jù)輸出到文件,
因此對于文件來說是“寫”*/ifstream i_file;
/*將數(shù)據(jù)輸入到內(nèi)存,其中ifstream是說輸入的數(shù)據(jù)在文件中,
因此對于文件來說是“讀”*/string out_text;
//寫
o_file.open(filename);
for(int i =0;i< =12;i++)
{
o_file< < "第"< < i< < "行"n";//將內(nèi)容寫入文本
}
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;
}
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。