溫馨提示×

溫馨提示×

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

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

C++中怎么讀寫文本文件

發(fā)布時間:2021-07-20 11:44:42 來源:億速云 閱讀:173 作者:Leah 欄目:編程語言

C++中怎么讀寫文本文件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

C++讀寫文本文件代碼示例如下:

  1. #include < iostream> 

  2. #include < fstream> 

  3. using namespace std;  

  4. int main()  

  5. {  

  6. const char filename[] = "mytext.txt";  

  7. ofstream o_file;  

  8. ifstream i_file;  

  9. string out_text;  

  10. //寫  

  11. o_file.open(filename);  

  12. for (int i = 1; i < = 10; i++)  

  13. {  

  14. o_file < <  "第" < <  i < <  "行"n"; //將內(nèi)容寫入到文本文件中  

  15. }  

  16. o_file.close();  

  17. //讀  

  18. i_file.open(filename);  

  19. if (i_file.is_open())  

  20. {  

  21. while (i_file.good())  

  22. {  

  23. i_file >> out_text; //將讀取的內(nèi)容存儲到變量out_text中  

  24. cout < <  out_text < <  endl;
     //在控制臺輸出讀取的內(nèi)容。為什么***一行的內(nèi)容會出現(xiàn)兩次  

  25. }  

  26. }  

  27. else  

  28. cout < <  "打開文件:" < <  filename < <  " 時出錯!";  

  29. i_file.close();  

  30. system("PAUSE");  

  31. return 0;  

  1. #include "stdafx.h"  

  2. #include < iostream> 

  3. #include < fstream> 

  4. #include < string> 

  5. using namespace std;  

  6. int _tmain(int argc, _TCHAR* argv[])  

  7. {  

  8. const char filename[]="test.doc";  

  9. ofstream o_file;
    /* 輸出流:將數(shù)據(jù)從內(nèi)存輸出其中ofstream是將數(shù)據(jù)輸出到文件,
    因此對于文件來說是“寫”*/  

  10. ifstream i_file;
    /*將數(shù)據(jù)輸入到內(nèi)存,其中ifstream是說輸入的數(shù)據(jù)在文件中,
    因此對于文件來說是“讀”*/  

  11. string out_text;  

  12. //寫  

  13. o_file.open(filename);  

  14. for(int i =0;i< =12;i++)  

  15. {  

  16. o_file< < "第"< < i< < "行"n";//將內(nèi)容寫入文本  

  17. }  

  18. o_file.close();  

  19. //讀  

  20. i_file.open(filename);  

  21. if(i_file.is_open())  

  22. {  

  23. while(i_file>>out_text)  

  24. {  

  25. cout < <  out_text < <  endl;  

  26. }  

  27. }  

  28. else  

  29. cout< < "打開文件:"< < filename< < "時出錯!";  

  30. i_file.close();  

  31. system("PAUSE");  

  32. return 0;  

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(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)容。

c++
AI