在C语言的文件操作中会接触到 fread 和 fwrite 函数,这篇文章就来介绍一下他们的基本信息和基础用法等。
这个是 fread 的格式,它的主要用处是 从文件中以二进制的方式格式化提取数据。?
在这里面的 buffer 一般指你所定义的数组或结构体等,size 指所读的数据的大小,count 指所读的数据的数量,stream 指流一般也就是你所定义的文件指针,光这样说可能有点抽象 那让我来举个简单的例子吧。
#include <stdio.h> #include <windows.h> struct student { ?? ?char name[20]; ?? ?int age; ?? ?float score; }; int main(void) { ?? ?struct student s = {0};//初始化数组 ?? ?FILE ?* ?pf = fopen("test.txt","rb");//打开文件? 在这一步可能会报错 因为还没有定义test.txt文件 ?? ?if(pf == NULL)//? ? ? ? ? ? ? ? ? ? ? ? ? ?//所以需要先用下面我介绍的 fwrite 函数想文件中输入相应信息 ?? ?{ ?? ??? ?printf("Error!!"); ?? ??? ?return 0; ?? ?}
????fread(&s,sizeof(struct student),1,pf);//将text.txt 中的数据提取出来 ?? ?printf("%s %d %f\n",s.name,s.age,s.score); ?? ?system("pause"); ?? ?fclose(pf); ?? ?pf = NULL; ?? ?return 0; }
下面就是 fwrite?函数 他的作用是以二进制的方式向文件中传入信息。来看看他的格式
?他的格式也与 fread 函数格式相似 不过他的功能是向文件中传入?
看看这个例子
#include <stdio.h> #include <windows.h> struct student { ?? ?char name[20]; ?? ?int age; ?? ?float score; }; int main(void) { ?? ?struct student s[2]={"张三",20,96.5 ?? ?,"李四",19,98.5}; ?? ?FILE * pf = fopen("test.txt","wb"); ?? ?if(pf == NULL) ?? ?{ ?? ??? ?printf("Error!!"); ?? ??? ?return 0; ?? ? }? ?? ? fwrite(s,sizeof(struct student),2,pf);//? 这里是向文件中传入了两组数据所以相应的count就写成2? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// 同样的也应该定义个数组或者结构体数组,而在传入的时候
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//可以直接用数组名来充当指针? ?
//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 如果想提取出多组数据 fread 也是相同的道理。 ?? ?fclose(pf); ?? ?pf = NULL; }
好的 这个相关的介绍也要结束了 我会在后面分享更多的有关c语言的知识。
|