如何读取和写入用户信息到具有结构的文件

时间:2019-05-01 16:25:52

标签: c file structure

我正在创建文件,我想从用户那里获取信息并写入文件还是从数据中读取信息?我想在Switch

中使用

我用于将数据写入文件的代码:fwrite(&x, sizeof(struct userRec), 1, fout); fclose(fout);

我用于将数据写入文件的代码:fread(&x, sizeof(struct userRec), 1, fin);

当我尝试在文件上写一些信息并用记事本打开时,我只看到一些NULL字符。

struct userRec{

    char firstName[25];
    char lastName[25];
    int UserID; 
    int day;
    int month;
    int year;
    char adress[200];
    float money;

};

int main(){

    struct userRec user;
    struct userRec x;
    int menu1, answer;
    char login[10];
    char answer2;
    char file_name[100];
    float deposit, withdraw;

    printf("Welcome to the IAU BANK !\n");

    printf("Please enter any character to sign in : ");
    scanf("%c",&login);

    printf("\n\n\tMENU\n1.Create User Registration\n2.Login to Account\n");
    scanf("%d",&menu1); 

    switch (menu1){

        case 1:

            printf("Please write your ID Number : ");
            scanf("%s",&file_name);
            FILE *fout;
            fout = fopen(file_name , "wb");

            printf("Please Enter Your First Name : ");
            scanf("%s",&x.firstName);

            printf("Please Enter Your Last Name : ");
            scanf("%s",&x.lastName);    

            printf("Please Enter Your Identification Number Again : ");
            scanf("%d",&x.UserID);

            printf("Please Enter Your Birthday Date (dd/mm/yyyy) Format : ");
            scanf("%d / %d / %d",&x.day,&x.month,&x.year);

            printf("Please Enter Your Adress : ");
            scanf("%s",&x.adress);

            printf("\n\n\tYour Information is :\nFirst Name : %s\nLast Name : %s \nIdentification Number : %d \nBirthday Date : %d/%d/%d\nAdress : %s",x.firstName,x.lastName,x.UserID,x.day,x.month,x.year,x.adress);

            printf("\n\n\tDo You Approve Your Information ? Yes:5 No:6 Enter 5 or 6\n");
            scanf("%d",&answer);

        case 5:

            printf("Your information has been saved!\n");

            fwrite(&user, sizeof(struct userRec), 1, fout); 
            fclose(fout);           

            printf("\nPress the 2 button to log in to your account : ");
            scanf("%d",&answer);

        case 2:

            printf("Please write your ID Number : ");
            scanf("%s",&file_name);

            FILE *fin;
            fin = fopen(file_name , "r");

            fread(&x, sizeof(struct userRec), 1, fin);

            printf("Welcome %s %s your ID : %d Your Date : %d / %d / %d Your Address : %s", x.firstName,x.lastName,x.UserID,x.day,x.month,x.year,x.adress);


            printf("\nThe amount of money in your account : %.2f",x.money);

            printf("\n\n\tMENU\n3.Deposit Money\n4.Withdraw Money\n");
            scanf("%d",&menu1);
            break;

        case 3:
            printf("Please enter the amount of money you want to deposit : ");
            scanf("%f",&deposit);

            printf("\nThe amount of money you deposit : %.2f\n", deposit);

            x.money = deposit + x.money;

            fwrite(&x, sizeof(struct userRec), 1, fout); 
            fclose(fout);
            printf("\nThe total amount of money you deposit : %.2f\n",x.money);
            break;

        case 4:

            printf("Please enter the amount of money you want to withdraw : ");
            scanf("%f",&withdraw);

    }
}

2 个答案:

答案 0 :(得分:1)

您当然可以这样做,但是您真的要这么做吗?

主要缺点是文件的可移植性:字节序,对齐方式,处理器大小和版本

字节序问题是存储大于128或256的数字类型需要使用多个字节,并且有两种主要模式,具体取决于第一个字节存储数字的最高部分(大字节序)还是最低部分(小尾数)。如果文件以一种形式存储在一台计算机上,则无法在以另一种方式配置的计算机上正确地读取该文件。世界上大部分地区都在Intel或小端模式的ARM上运行,因此,似乎小端赢得了胜利,但情况并非总是如此。

对齐是编译器对齐结构中每个字段的位置,以提供更好的性能,只保留奇数个备用字节。不同的处理器具有不同的对齐规则,因此文件可能会在其他处理器上甚至在使用稍有不同选项构建的程序的同一平台上被误读。

处理器大小是整数的默认大小多年来增长的一个问题。如果您在1980年保存了文件,则int可能只占用了2个字节,因为那是当时的处理器int大小。分步增加到4字节,8字节,现在16字节的整数大小并非鲜见。您可以使用ansi标准名称int32_t或int64_t缓解此问题。

版本控制是您自己解决的问题。如果您决定需要一个额外的字段(例如middleInitial),在6个月的时间内会发生什么?您的新程序将如何读取旧数据文件及其新文件?如果旧程序遇到新程序,它将如何知道拒绝它?

答案 1 :(得分:0)

尝试使用.dat文件。您可以读写整个结构。 https://www.google.com/amp/s/www.geeksforgeeks.org/readwrite-structure-file-c/amp/