文件操做:fread()和fwrite()

fread和fwrite函数功能函数

 

  用来读写一个数据块。spa

 

通常调用形式指针

 

  fread(buffer,size,count,fp);orm

 

  fwrite(buffer,size,count,fp);原型

 

说明it

 

  (1)buffer:是一个指针,对fread来讲,它是读入数据的存放地址。对fwrite来讲,是要输出数据的地址。io

 

  (2)size:要读写的字节数;form

 

  (3)count:要进行读写多少个size字节的数据项;stream

 

  (4)fp:文件型指针。file

 

注意:1 完成次写操(fwrite())做后必须关闭流(fclose());

 

           2 完成一次读操做(fread())后,若是没有关闭流(fclose()),则指针(FILE * fp)自动向后移动前一次读写的长度,不关闭流继续下一次读操做则接着上次的输出继续输出;

 

           3 fprintf() : 按格式输入到流,其原型是int fprintf(FILE *stream, const char *format[, argument, ...]);其用法和printf()相同,不过不是写到控制台,而是写到流罢了。注意的是返回值为这次操做写入到文件的字节数。如int c = fprintf(fp, "%s %s %d %f", str1,str2, a, b) ;str1:10字节;str2: 10字节;a:2字节;b:8字节,c为33,由于写入时不一样的数据间自动加入一个空格。

 

文件使用以后必定要关闭,不然将不能正确显示内容.fwrite:读入两个学生信息而后用fwrite存入文件

 

fread:用fread从文件中读出学生信息。

 

fwrite.c

 

#include <stdio.h>

#define SIZE 2

struct student_type

{

char name[10];

int num;

int age;

char addr[10];

}stud[SIZE];

void save()

{

FILE *fp;

int i;

if((fp=fopen("stu_list","wb"))==NULL)

{

  printf("cant open the file");

  exit(0);

}

for(i=0;i<SIZE;i++)

{

   if(fwrite(&stud[i],sizeof(struct student_type),1,fp)!=1)

    printf("file write error\n");

}

fclose(fp);

}

main()

{

int i;

for(i=0;i<SIZE;i++)

{

   scanf("%s%d%d%s",&stud[i].name,&stud[i].num,&stud[i].age,&stud[i].addr);

   save();

}

for(i=0;i<SIZE;i++)

{

   printf("%s,%d,%d",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);

}

}

 

fread.c

 

#include <stdio.h>

#define SIZE 2

struct student_type

{

char name[10];

int num;

int age;

char addr[10];

}stud[SIZE];

void read()

{

FILE *fp;

int i;

if((fp=fopen("stu_list","rb"))==NULL)

{

  printf("cant open the file");

  exit(0);

}

for(i=0;i<SIZE;i++)

{

   if(fread(&stud[i],sizeof(struct student_type),1,fp)!=1)

    printf("file write error\n");

}

fclose(fp);

}

main()

{

 

int i;

read();

for(i=0;i<SIZE;i++)

{

   printf("%s,%d,%d,%s",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);

   printf("\n");

}

}

相关文章
相关标签/搜索