VC操作txt文档

VC中按行读取文本文件

程序如下:
{

   .....................
   CStdioFile file;
   CString str;
   file.Open("test.txt",CFile::modeRead,NULL);
   file.ReadString(str);
   MessageBox(str);//第一行
   file.ReadString(str);
   MessageBox(str);//第二行
.....................
}

看看两次显示的有什么不同。test.txt文件如下:
第一行
第二行

你可能感兴趣的:(VC操作txt文档)