实训笔记L5

文件基本操作

文件的输入输出

打开文件 fopen(文件名,使用方式);
  • r:只读
  • w:只写,文件不存在则新建
  • a:追加
  • rb:二进制文件的只读
  • wb:二进制文件的只写
  • ab:二进制文件的追加
#include <stdio.h>
#include <stdlib.h>

int main()
{
    FILE *file;
    if((file=fopen("file.txt","w"))==NULL){
        printf("error");
        exit(0);
    }
    return 0;
}
关闭文件
  • 每次适用于文件相关的代码都需要关闭文件
  • 有返回值
FILE *file
fclose(file)
读写文件数据
char filename[1000];
fgets(filename,sizeof(filename),stdin);//输入字符串(可输入空格)
  • 向文件中写入:fputc(char,file);
  • 从文件中读取:fgetc(char,file);
#include <stdlib.h>
#include <string.h>

int main()
{
    char ch;
    fgets(filename,sizeof(filename),stdin);//输入字符串(可输入空格)
    FILE *file;
    if((file=fopen("file.txt","w"))==NULL){ //新建文件
        printf("error");
        exit(0);
    }
    ch=getchar();
    while(ch!='0'){
        fputc(ch,file);//向文件中写入ch
        putchar(ch);//输出单个字符ch
        ch=getchar();//读入字符给ch
    }
    fclose(file);//关闭文件
    return 0;
}
文件读写字符串
  • 从文件中获取:fgets(str,n,file);

  • fgets函数的原型:char *fgets(char*str,int n,FILE *file);

    • n的值得到的字符个数,实际是从file文件中读取n-1个字符,外加字符串结束表识’\0’
    • 读取是若出现’\n’或者EOF,读取结束
  • 写入文件:fputs(str,file);

    • fputs函数原型:char fputs(char*str,FILE *file);
    • fputs也可以写入换行
    • fputs("\n",file);
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main()
{
    char ch[10];
    FILE *file;
    if((file=fopen("file.txt","r"))==NULL){
       printf("error");
       exit(0);
    }
    while(fgets(ch,10,file)!=NULL){
        printf("%s",ch);
    }
    fclose(file);
    return 0;
}
二进制方式读写文件
  • 从文件中读取fread(buffer,size,count,file);
  • count表示每次读取多少个size长度的内容,在循环中每次读一个,为1
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct Stu{
    int id;
    char name[20];
    char add[20];
}stu[3];

int main()
{
    FILE *file;
    if((file=fopen("file.dat","r"))==NULL){
        printf("error");
        exit(0);
    }
    int i;
    for(i=0;i<3;i++){
        fread(&stu[i],sizeof(struct Stu),1,file);
        printf("%d\t%s\t%s\n",stu[i].id,stu[i].name,stu[i].add);
    }
    fclose(file);
    return 0;
}

  • 写入文件:fwrite(buffer,size,count,file);
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void save();

struct Stu{
    int id;
    char name[20];
    char add[20];
}stu[3];

int main()
{
    int i;
    for(i=0;i<3;i++){
        scanf("%d,%s,%s",&stu[i].id,&stu[i].name,&stu[i].add);
    }
    save();
    return 0;
}

void save()
{
    FILE *file;
    if((file=fopen("file.dat","w"))==NULL){
        printf("error");
        exit(0);
    }
    int i;
    for(i=0;i<3;i++){
        if(fwrite(&stu[i],sizeof(struct Stu),1,file)!=1){
            printf("error");
        }
    }
    fclose(file);
}
大数据的处理:随机读取数据文件
文件位置标记及定位
  • 文件头->文件具体位置标记->文件尾
  • 随机读写:完成一个字符,并不对后续字符产生影响
定位
  • rewind->文件头
  • fseek->位置定位 fseek(file,位移量,起始点)
  • 起始点:0(开头),1(中间),2(结尾)
  • 位移量-100L:向前移动100个字节
ftell->文件尾
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct Stu{
    int id;
    char name[20];
    char add[20];
}stu[3];

int main()
{
    FILE *file;
    if((file=fopen("file.dat","r"))==NULL){
        printf("error");
        exit(0);
    }
    fseek(file,1*sizeof(struct Stu),0);
    fread(&stu[1],sizeof(struct Stu),1,file);
    printf("%d\t%s\t%s\t",stu[1].id,stu[1].name,stu[1].add);
    fclose(file);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值