讀取文件時(shí)
01 void CFileView::OnFileWrite()
02 {
03 // TODO: Add your command handler code here
04 FILE *pFile=fopen("1.txt","r");
05 char *pbuf;
06 fseek(pFile,0,SEEK_END); //為了獲取數(shù)據(jù)的長(zhǎng)度,將指針指向文件的末尾
07 int len=ftell(pFile);
08 pbuf =new char[len+1];
09 //rewind(pFile); //下同fseek(pFile,0,SEEK_SET);
10 fseek(pFile,0,SEEK_SET); //讀取數(shù)據(jù)前,需要將指針再指回起始位置
11 fread(pbuf,1,len,pFile);
12 pbuf [len]='"0';
13 fclose(pFile);
14 MessageBox(pbuf);
15 }
12.2.3二進(jìn)制文件和文本文件
字太多,有點(diǎn)啰嗦,不寫了,慢慢體會(huì)。
12.3C++對(duì)文件操作的支持
01 void CFileView::OnFileWrite()//寫入
02 {
03 ofstream ofs("3.txt");
04 ofs.write("www.colsir.com",strlen("www.colsir.com"));
05 ofs.close();
06 }
07 void CFileView::OnFileRead() //讀取
08 {
09 // TODO: Add your command handler code here
10 ifstream ifs("3.txt");
11 char buf[100];
12 memset(buf,0,100);
13 ifs.read(buf,100);
14 ifs.close();
15 MessageBox(buf);
16 }
12.4Win32 API對(duì)文件操作的支持
01 void CFileView::OnFileWrite()//寫入
02 {
03 HANDLE hFile;
04 hFile=CreateFile("4.txt",GENERIC_WRITE,0,NULL,CREATE_NEW,FILE_ATTRIBUTE_NORMAL,NULL);
05 DWORD dwWrites;
06 WriteFile(hFile,"www.colsir.com",strlen("www.colsir.com"),&dwWrites,NULL);
07 CloseHandle(hFile);
08 }
09 void CFileView::OnFileRead()//讀取
10 {
11 // TODO: Add your command handler code here
12 HANDLE hFile;
13 hFile=CreateFile("4.txt",GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
14 char buf[100];
15 DWORD dwWrites;
16 ReadFile(hFile,buf,100,&dwWrites,NULL);
17 buf[dwWrites]=0;
18 CloseHandle(hFile);
19 MessageBox(buf);
20 }
相關(guān)推薦:
2012年計(jì)算機(jī)等考四級(jí)數(shù)據(jù)庫(kù)工程師備考筆記匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |