C++中怎么讀寫文本文件,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)公司是一家以網(wǎng)站建設(shè)公司、網(wǎng)頁設(shè)計(jì)、品牌設(shè)計(jì)、軟件運(yùn)維、seo優(yōu)化、小程序App開發(fā)等移動(dòng)開發(fā)為一體互聯(lián)網(wǎng)公司。已累計(jì)為成都水處理設(shè)備等眾行業(yè)中小客戶提供優(yōu)質(zhì)的互聯(lián)網(wǎng)建站和軟件開發(fā)服務(wù)。
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)容存儲(chǔ)到變量out_text中
cout < < out_text < < endl;
//在控制臺(tái)輸出讀取的內(nèi)容。為什么***一行的內(nèi)容會(huì)出現(xiàn)兩次}
}
else
cout < < "打開文件:" < < filename < < " 時(shí)出錯(cuò)!";
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ù)輸出到文件,
因此對(duì)于文件來說是“寫”*/ifstream i_file;
/*將數(shù)據(jù)輸入到內(nèi)存,其中ifstream是說輸入的數(shù)據(jù)在文件中,
因此對(duì)于文件來說是“讀”*/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< < "時(shí)出錯(cuò)!";
i_file.close();
system("PAUSE");
return 0;
}
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。