- 论坛徽章:
- 0
|
- 文件 :
- 0a1=aa----1
- 1a2=bb----2
- 2a3=cc----3
- 3a4=dd----4
- 4a5=ee----5
- if ((fp = fopen("data.test" , "rb")) == NULL)
- {
- perror("open") ;
- exit(-1) ;
- }
- int iCount = 0 ;
- while(!feof(fp)) // 读到文件末尾时并不能得到 eof 字符,读下一个字符时得到,
- // 也就是说在下一次读时得到
- {
- memset(&rec , 0 , sizeof(struct record)) ; //
- fread((char *)(&rec) , sizeof(struct record) , 1 , fp) ;
- sprintf(buf , "%d%s%s%s" , rec.id , rec.key , rec.spliter, rec.value) ;
- iCount ++ ;
- printf("%s----%d\n" , buf , iCount) ;
- }
- printf("total : %d\n" , iCount) ;
- fclose(fp) ;
复制代码
// Result :
0a1=aa----1
1a2=bb----2
2a3=cc----3
3a4=dd----4
4a5=ee----5
4a5=ee----6 // aa
total : 6
1. 为何会多一行数据 aa ?
2. 修改代码为 :
- if ((fp = fopen("data.test" , "rb")) == NULL)
- {
- perror("open") ;
- exit(-1) ;
- }
- fseek(fp , 0 , 2) ; //
- int iCount = 0 ;
- while(!feof(fp))
- {
- fread((char *)(&rec) , sizeof(struct record) , 1 , fp) ;
- sprintf(buf , "%d%s%s%s" , rec.id , rec.key , rec.spliter, rec.value) ;
- iCount ++ ;
- printf("%s----%d\n" , buf , iCount) ;
- }
复制代码
// Result :
4a5=ee----1 // bb
total : 1
指针都移动到文件末尾了,为何还能输出最后一条数据 ?
加 fflush(fp) 没有作用,请问大家这是为何 ? 谢谢
[ 本帖最后由 studentstep 于 2006-2-14 10:26 编辑 ] |
|