1. 程式人生 > >開啟檔案的方法

開啟檔案的方法

方法1:freopen

例:freopen("demo.txt","r",stdin);然後直接cin即可讀取內容,且不需要關閉。

方法2:fstream

例:

讀取:ifstream

寫入:ofstream

開啟:fstream

以字元形式輸出檔案中所以內容:

 1 #include <iostream>
 2 #include <string>
 3 #include <fstream>
 4 using namespace std;
 5 int main()
 6 {
 7     string str;
 8     ifstream myfile("
C://Users//Linuas//Desktop//demo.txt"); 9 if (!myfile.is_open()) cout << "error!" << endl; 10 while (getline(myfile, str)) 11 cout << str << endl; 12 myfile.close(); 13 return 0; 14 }