关于文本文件的度取
大家好 ,小弟最近有个问题
我要写一个读txt文件的函数,这个方法很多.但是呢,我要读的文本文件太大了7M多.所以根本读不出来.
大家看看我的方法,给点建议:
char s[255];
FILE *stream;
m_list.ResetContent();
stream = fopen("e:\\123.txt", "r");
if (stream != NULL)
{
while (!feof(stream)){
fscanf(stream,"%s\t",s);
m_list.AddString(s);
AfxMessageBox(s);
}
fclose(stream);
}
谢谢.