1. 程式人生 > >c++檔案流基本用法(fstream, ifstream, ostream)

c++檔案流基本用法(fstream, ifstream, ostream)

前言:
c++的檔案流處理其實很簡單,前提是你能夠理解它。檔案流本質是利用了一個buffer中間層。有點類似標準輸出和標準輸入一樣。

c++ IO的設計保證IO效率,同時又兼顧封裝性和易用性。本文將會講述c++檔案流的用法。

有錯誤和疏漏的地方,歡迎批評指證。

需要包含的標頭檔案: <fstream> 

名字空間: std

也可以試用<fstream.h>

fstream提供了三個類,用來實現c++對檔案的操作。(檔案的建立,讀寫)。
ifstream -- 從已有的檔案讀

ofstream -- 向檔案寫內容

fstream - 開啟檔案供讀寫

支援的檔案型別

實際上,檔案型別可以分為兩種: 文字檔案和二進位制檔案.

文字檔案儲存的是可讀的字元, 而二進位制檔案儲存的只是二進位制資料。利用二進位制模式,你可以操作影象等檔案。用文字模式,你只能讀寫文字檔案。否則會報錯。

例一: 寫檔案

宣告一個ostream變數

  1. 呼叫open方法,使其與一個檔案關聯
  2. 寫檔案
  3. 呼叫close方法.
  1. #include <fstream.h>
  2. void main
  3. {
  4. ofstream file;
  5. file.open("file.txt");
  6. file<<"Hello file/n"<<75;
  7. file.close
    ();
  8. }

可以像試用cout一樣試用操作符<<向檔案寫內容.
Usages:

  1. file<<"string/n";
  2. file.put('c');

例二:  讀檔案

1. 宣告一個ifstream變數.

2. 開啟檔案.

3. 從檔案讀資料

4. 關閉檔案.

  1. #include <fstream.h>
  2. void main
  3. {
  4. ifstream file;
  5. char output[100];
  6. int x;
  7. file.open("file.txt");
  8. file>>output;
  9. cout<<output;
  10. file>>x;
  11. cout<<x;
  12. file.close();
  13. }同樣的,你也可以像cin一樣使用>>來操作檔案。或者是呼叫成員函式Usages:
  1. file>>char *;
  2. file>>char;
  3. file.get(char);
  4. file.get(char *,int);
  5. file.getline(char *,int sz);
  6. file.getline(char *,int sz,char eol);

1.同樣的,你也可以使用建構函式開開啟一個檔案、你只要把檔名作為建構函式的

第一個引數就可以了。

  1. ofstream file("fl.txt");
  2. ifstream file("fl.txt");

上面所講的ofstream和ifstream只能進行讀或是寫,而fstream則同時提供讀寫的功能。
void main()

  1. {
  2. fstream file;
  3. file.open("file.ext",iso::in|ios::out)
  4. //do an input or output here
  5. file.close();
  6. }

open函式的引數定義了檔案的開啟模式。總共有如下模式

  1. 屬性列表
  2. ios::in
  3. ios::out
  4. ios::app 從檔案末尾開始寫
  5. ios::binary 二進位制模式
  6. ios::nocreate 開啟一個檔案時,如果檔案不存在,不建立檔案。
  7. ios::noreplace 開啟一個檔案時,如果檔案不存在,建立該檔案
  8. ios::trunc 開啟一個檔案,然後清空內容
  9. ios::ate 開啟一個檔案時,將位置移動到檔案尾


Notes

  • 預設模式是文字
  • 預設如果檔案不存在,那麼建立一個新的
  • 多種模式可以混合,用|(按位或)
  • 檔案的byte索引從0開始。(就像陣列一樣)

我們也可以呼叫read函式和write函式來讀寫檔案。

檔案指標位置在c++中的用法:

  1. ios::beg 檔案頭
  2. ios::end 檔案尾
  3. ios::cur 當前位置例子:
  1. file.seekg(0,ios::end);
  2. int fl_sz = file.tellg();
  3. file.seekg(0,ios::beg);

常用的錯誤判斷方法:

  1. good() 如果檔案開啟成功
  2. bad() 開啟檔案時發生錯誤
  3. eof() 到達檔案尾例子:
  1. char ch;
  2. ifstream file("kool.cpp",ios::in|ios::out);
  3. if(file.good()) cout<<"The file has been opened without problems;
  4. else cout<<"An Error has happend on opening the file;
  5. while(!file.eof())
  6. {
  7. file>>ch;
  8. cout<<ch;
  9. }