摘要:
用CFile类简单读写文件 1 //读文件数据 2 void CFileOperDlg::OnButtonRead() 3 { 4 // TODO: Add your control notification handler code here 5 6 CFile file; 7 CString FileName="data.txt"; 8 char buf[1000];//读1K 9 memset(buf,0,1000);//初始化内存,防止读出字符末尾出现乱码10 try11 {12 if(!file.Open(FileName,CFile::modeRead))13. 阅读全文