C语言_文件读写

该博客介绍了如何使用fscanf()函数处理ANSI编码的文本文件,以及在遇到UTF-8编码文件时如何进行编码转换以避免乱码。示例代码展示了读取和解析包含学生信息的数据,以及读取二维数组布局的数据。当文件编码为UTF-8时,需要额外的转换步骤。
摘要由CSDN通过智能技术生成

标准格式化文本读写 fscanf()

纯文本 ANSI 编码格式的文本内容如下:
在这里插入图片描述

#include<stdio.h>

int main(){
    int ID;
    char Name[32]={0};
    char College[128]={0};
    float Score = 0.0;

    FILE *file = fopen("123_ANSI.txt","r");
    if(!file){
        printf("Fail to open file....\n");
        return;
    }
    printf("学生名单为\n");
    while(1){

        if(EOF == fscanf(file,"%d %s %s %f",&ID,Name,College,&Score))
            break;
        printf("学号:%d 姓名:%s 学院:%s 分数%.2f\n",ID,Name,College,Score);
    }
    fclose(file);
    return 0;
}

在这里插入图片描述
如果 123.txt 文件编码格式为 unicode utf-8 ,需要自己编写编码转换,否则输出易出现乱码错误,因 fopen() 支持两种方式读写文件,一种是 二进制、另一种是 纯文本(ANSI)
在这里插入图片描述

fgets() 按行读文本

2_1_input_data.txt ANSI编码,内容如下

3,4,5
S,.,.,.
.,X,.,X
.,.,.,D
#include<stdio.h>
#include<stdbool.h>
#include<string.h>
#include<math.h>

#define N 9

int main(){
    char map[N][N];
    char str[1000];

    int i=0,j; // 循环变量
    memset(map,0,sizeof(map));

    FILE *file = fopen("2_1_input_data.txt","r");
    if(!file){
        printf("Fail to open file....\n");
        return;
    }
    
    int array[10];
    int count = 0;
    char *p;
    while(fgets(str, sizeof(str),file) != NULL){
        count=count+1;
        //str[strlen(str)-1]='\0';        //将换行符\n 换成字符串结束符 \0

        if(count==1){
            printf("%s",str);
            p=strtok(str,",");
            j=0;
            while(p){
                printf("%s\n",p);
                array[j]=atoi(p);
                p = strtok(NULL, ",");
                j=j+1;
            }
            n=array[0];
            m=array[1];
            t=array[2];
        }


        if(count!=1){

            printf("%s",str);
            p=strtok(str,",");
            j=0;
            while(p){
                printf("%s\n",p);
                map[i][j]= *p;
                j=j+1;
                p = strtok(NULL, ",");
            }
            i=i+1;
        }
    }
    fclose(file);

    printf("...............\n");
    printf("n=%d\n",n);
    printf("m=%d\n",m);
    printf("t=%d\n",t);
    for(i=0;i<n;i++){
        for(j=0;j<m;j++){
            printf("%c ",map[i][j]);
        }
        printf("\n");
    }
    return 0;
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值