C 中檔案流 fstream 的使用方法及示例

2021-07-02 19:11:05 字數 4703 閱讀 3205

c++檔案流:

[cpp]view plain

copy

fstream  

// 檔案流

ifstream  // 輸入檔案流

ofstream  // 輸出檔案流

[cpp]view plain

copy

#include 

//建立乙個文字檔案並寫入資訊

//同向螢幕上輸出資訊一樣將資訊輸出至檔案

#include

#include

void

main()    

檔案操作:

開啟檔案

檔名注意路徑名中的斜槓要雙寫,如:

"d:\\myfiles\\readme.txt"

檔案開啟方式選項:

[cpp]view plain

copy

ios::in    = 0x01, 

//供讀,檔案不存在則建立(ifstream預設的開啟方 式)

ios::out    = 0x02, //供寫,檔案不存在則創 建,若檔案已存在則清空原內容(ofstream預設的開啟方式)

ios::ate    = 0x04, //檔案開啟時,指標在檔案最後。可改變指標的位置,常和in、out聯合使用

ios::trunc   = 0x10, // 在讀寫前先將檔案長度截斷為0(預設)

ios::noreplace = 0x40, //檔案存在時產生錯誤,常和out聯合使用

ios::binary  = 0x80  //二進位制格式檔案

檔案保護方式選擇項:

[cpp]view plain

copy

filebuf::openprot;   

//預設的相容共享方式

filebuf::sh_none;    //獨佔,不共享

filebuf::sh_read;    //讀共享

filebuf::sh_write;   //寫共享

開啟檔案的方法

呼叫建構函式時指定檔名和開啟模式

[cpp]view plain

copy

ifstream f(

"d:\\12.txt"

, ios::nocreate);         

//預設以 ios::in 的方式開啟檔案,檔案不存在時操作失敗

ofstream f("d:\\12.txt"

);                

//預設以 ios::out的方式開啟檔案

fstream  f("d:\\12.dat"

, ios::in|ios::out|ios::binary); 

//以讀 寫方式開啟二進位制檔案

使用open成員函式

[cpp]view plain

copy

fstream f;  

f.open("d:\\12.txt"

,ios::out);             

//利用同一物件對多個檔案進行操作時要用到open函式

檢查是否成功開啟

成功:[cpp]view plain

copy

if(f)        

//對ifstream、ofstream物件可 用,fstream物件不可用。 mysql

if(f.good())   

失敗:[cpp]view plain

copy

if(!f)        

// !運算子已經過載

if(f.fail())   

讀寫操作

使 用<<,>>運算子

只能進行文字檔案的讀寫操作,用於二進位制檔案可能會產生錯誤。

使用函式成員 get、put、read、write等

經常和read配合使用的函式是 gcount(),用來獲得實際讀取的位元組數。

讀寫二進位制檔案注意事項

開啟方式中必須指定ios::binary,否則讀寫會出錯

用read\write進行讀寫操作,而不能使用插入、提取運算子進行操作,否則 會出錯。

使用eof()函式檢測檔案是否讀結束,使用gcount()獲得實際讀取的位元組數

關閉檔案

使用成員函式close, 如: oracle

f.close(); 

利用析構函式

物件生命期結 束時會檢查檔案是否關閉,對沒有關閉的檔案進行關閉操作。

隨機讀寫檔案

通過移動檔案讀寫指標,可在檔案指定位置進行讀寫。

[cpp]view plain

copy

seekg(絕對位置);      

//絕對移動,    //輸入流操作

seekg(相對位置,參照位置);  //相對操作

tellg();          //返回當前指標位置

seekp(絕對位置);      //絕對移動,    //輸出流操作

seekp(相對位置,參照位置);  //相對操作   

tellp();          //返回當前指標位置

參照位置: mysql

[html]view plain

copy

ios::beg= 0

//相對於檔案頭  

ios::cur= 1

//相對於當前位置  

ios::end= 2

//相對於檔案尾  

寫文字檔案的示例

//為能夠正確讀出寫入檔案的各資料,各資料間最好要有分隔

[html]view plain

copy

#include

<

fstream

>

void main()    

運 行結果:

1234

3.14

ahow are you

press any key to continue

顯示文字檔案的內容

[html]view plain

copy

//使用get()一次讀乙個字元--------------------------------方案一  

#include<

fstream

>

void main()  

char c;  

while ((c

=fin

.get()) != eof) cout 

<

<

c;    //注意結束條件的判斷  

fin.close();  

}  

//使用get(char *,int n,char delim='\n')一次讀多個字元----方案二

//巧妙利用文字檔案中不會有字元'\0'的特點進行讀取

[cpp]view plain

copy

#include

void

main()  

char

c[80];  

while

(fin.get(c,80,

'\0'

)!=null)coutfin.close();  

}  //使用read(char *,int n)讀檔案---------------------------方案三

#include

void

main()  

char

c[80];  

while

(!fin.eof())            

//判 斷檔案是否讀結束

fin.close();  

}  

拷貝檔案

//二進位制檔案操作示例

ssh[cpp]view plain

copy

#include

void

main()  

ofstream fout("c:\\2.exe"

, ios::binary);  

char

c[1024];  

while

(!fin.eof())  

fin.close();  

fout.close();  

cout << "copy over!\n"

;  }  

乙個開啟並檢查輸入檔案的程式:

[cpp]view plain

copy

#include

#include

#include

using

namespace

std;  

ifstream& open_file(ifstream &in,const

string &file)  

intmain()  

file.close();  

return

0;  

}  

C 中檔案流 fstream 的使用方法及示例

c 檔案流 fstream 檔案流 ifstream 輸入檔案流 ofstream 輸出檔案流 include 建立乙個文字檔案並寫入資訊 同向螢幕上輸出資訊一樣將資訊輸出至檔案 include includevoid main 檔案操作 開啟檔案 檔名注意路徑名中的斜槓要雙寫,如 d myfile...

C 中檔案流 fstream 的使用方法及示例

c 檔案流 fstream 檔案流 ifstream 輸入檔案流 ofstream 輸出檔案流 include 建立乙個文字檔案並寫入資訊 同向螢幕上輸出資訊一樣將資訊輸出至檔案 include include void main 檔案操作 開啟檔案 檔名注意路徑名中的斜槓要雙寫,如 d myfil...

檔案流fstream 函式

include include include include or stdlib.h for exit const char file 1.txt 我要開啟的當前資料夾中的文字 int main 以追加的方式新增新的內容 if fout.is open cout enter guest names...