繁体   English   中英

如何从文件读取数据?

[英]How can I read data from file?

我正在尝试创建在c中具有五个功能的电话簿。 我已经形成了第一个功能,该功能需要并保存文件人的知识。 但是,我无法通过第二功能从文件中仅搜索一个人(不是所有人)的知识。

要运行此功能(““ display()函数”“),我想搜索用户的名称并在屏幕上显示该名称的知识。 我写了一些东西,但是没有用。 问题是display()函数。 如何只读取一行并将其打印在屏幕上? 提前致谢。

#include <stdio.h>
#include <stdlib.h>     // "stdlib" library contains of exit() and malloc function                        
#include <Windows.h>   // "Windows" library contains of Sleep() function
#include <string.h>   // "string" library contains of strcmp() function

struct personKnowledge
{
    char number[16];
    char name[16];
    char surname[16];
};

void newRecord();
void display();
void deletE();
void add();
void update();

FILE *ptrFILE;

int main()
{
    int choice;
    printf("\n\t\t *-* Phone Book Program *-*");
    do
    {
        printf("\n\n\t\t 1) New record");   // The options are being presented to user
        printf("\n\n\t\t 2) Display person knowledge");
        printf("\n\n\t\t 3) Delete someone");
        printf("\n\n\t\t 4) Add new person");
        printf("\n\n\t\t 5) Update person knowledge");
        printf("\n\n\t\t 6) Exit");
        printf("\n\n\nEnter your choice: ");
        scanf("%d", &choice);
        switch (choice)
        {
        case 1:
        {
            newRecord();
            break;
        }
        case 2:
        {
            display();
            break;
        }
        case 3:
        {
            break;
        }
        case 4:
        {   
            break;
        }
        case 5:
        {
            break;
        }
        case 6:
        {
            printf("\nWorking has been completed.\n");
            exit(0);
            break;
        }
        default:
        {
            printf("\nWrong entry! The program has been terminated.\n");
        }
        }   
    } while (choice >=1 && choice <=6 );
    return 0;
}

void newRecord()
{
    system("cls");   // Screen is being cleaned
    if ((ptrFILE = fopen("Phone Book.txt", "w")) == NULL)
    {
        printf("The file couldn't open\n");
    }
    else
    {          
        struct personKnowledge *p;   // p means person
        p = (struct personKnowledge *)malloc(sizeof(struct personKnowledge));   // Memory is being allocated
        fflush(stdin);
        printf("\n\nDetermine person name: ");   // User is entering the person's knowledge and they are being saved in file
        gets(p->name);
        printf("Determine %s's surname: ", p->name);
        gets(p->surname);
        printf("Determine %s's number: ", p->name);
        gets(p->number);
        fprintf(ptrFILE, "Name\t\t\t\tSurname\t\t\t\t\tNumber\n");
        fprintf(ptrFILE, "--------\t\t   ----------------\t\t\t---------------------\n");
        fprintf(ptrFILE, "\n%s%33s%38s\n", p->name, p->surname, p->number);
        fclose(ptrFILE);
        free(p);
        printf("Please wait, information is saving to file..\n");
        Sleep(1000);
        printf("*-* Saving operation has been completed. *-*");
    }
    fclose(ptrFILE);
}

void display()
{
    struct personKnowledge *s;   // s means searching
    char name[16];
    if ((ptrFILE = fopen("Phone Book.txt", "r")) == NULL)
    {
        printf("The file couldn't open\n");
    }
    else
    {
        fseek(ptrFILE, 0L, SEEK_SET);
        printf("Express name which you search: ");
        gets(s->name);
        while (!feof == NULL)
        {
            fscanf(ptrFILE,"%s", &name);
            if (strcmp(s->name, name) == 0)
            {
                printf("qawsdsdf");
            }
        }
    }
    fclose(ptrFILE);
}

为了回答您的问题之一,建议您在display()重写此循环

while (!feof == NULL)                   // wrong way to use feof
{
    fscanf(ptrFILE,"%s", &name);        // might overflow the string space
    if (s->name == name)                // wrong way to compare strings
    {
        printf("qawsdsdf");             // missing newline?
    }
}

有了这个

while (fgets(name, sizeof(name), ptrFILE) != NULL)  // safer way to read to a small buffer
{
    name [ strcspn(name, "\r\n") ] = 0; // remove trailing newline etc
    if (strcmp(s->name, name) == 0)     // compare the strings
    {
        printf("qawsdsdf\n");           // added newline
    }
}

编辑在您发布的代码,甚至不正确编译任何情况下:

while (!feof == NULL)

是垃圾,应该是

while (!feof(ptrFILE))

尽管正如我所说,反正不是使用feof的方法 如果启用了编译器警告并对其进行处理,则不会发生这种情况。

我的解决方案是更改文件的格式

fprintf(ptrFILE, "\n%s%33s%38s", p->name, p->surname, p->number);

因为如果您使用程序来检索信息,则无需在每次写入信息时都用一堆垃圾标题填充它。 然后,我编辑了显示功能,以便能够检索所述信息。

void display()
{
    struct personKnowledge s;   // s means searching
    char name[16];
    char sname[16];
    char number[16];
    char surname[16];
    if ((ptrFILE = fopen("Phone Book.txt", "r")) == NULL)
    {
        printf("The file couldn't open\n");
    }
    else
    {
        printf("Express name which you search: ");
        scanf("%s", &sname);
        do
        {
            fscanf(ptrFILE,"%s%33s%38s", &name, &surname, &number);
            if (strcmp(sname, name) == 0)
            {
                printf("%s %s %s", name, surname, number);
            }
        }
        while (strcmp(sname, name) != 0);
    }
}

PS我对自己还是个新手,我想我不能为您解释为什么我的代码有效而您的代码无效。 但是我可以说,当我对代码进行故障排除时,您每次写入文件的那些标头都是问题的主要部分。

我认为这些小的更改将解决您的问题

  • 分配用于存储personKnowledge s = (struct personKnowledge *)malloc(sizeof(struct personKnowledge));内存s = (struct personKnowledge *)malloc(sizeof(struct personKnowledge));
  • 使文件指针到达数据的起始位置。 已使用一个简单的技巧来实现此fscanf(ptrFILE, "Name\\t\\t\\t\\tSurname\\t\\t\\t\\t\\tNumber\\n"); fscanf(ptrFILE, "--------\\t\\t ----------------\\t\\t\\t---------------------\\n"); fscanf(ptrFILE, "Name\\t\\t\\t\\tSurname\\t\\t\\t\\t\\tNumber\\n"); fscanf(ptrFILE, "--------\\t\\t ----------------\\t\\t\\t---------------------\\n");
  • 在while循环中进行更改。 while (!feof(ptrFILE))
  • 扫描一行数据。 fscanf(ptrFILE, "\\n%s%33s%38s\\n", s->name, s->surname, s->number)
  • 更改字符串比较。 if (strcmp(name,s->name) == 0)

修改后的显示功能

    void display(){
      struct personKnowledge *s;   
      s = (struct personKnowledge *)malloc(sizeof(struct personKnowledge));   // Memory is being allocated for s
      fflush(stdin);

      char name[16];
      if ((ptrFILE = fopen("Phone Book.txt", "r")) == NULL)
      {
      printf("The file couldn't open\n");
      }
      else
      {
      fseek(ptrFILE, 0L, SEEK_SET);
      printf("Express name which you search: ");
      scanf("%s",name);     //the name you want to retrieve

      fscanf(ptrFILE, "Name\t\t\t\tSurname\t\t\t\t\tNumber\n");
      fscanf(ptrFILE, "--------\t\t   ----------------\t\t\t---------------------\n");   //when we read the file for first time we need to start from the first location of person data, this is a trick to make ptrFILE reach there
      fflush(stdin);

      while (!feof(ptrFILE))
      {
      fscanf(ptrFILE, "\n%s%33s%38s\n", s->name, s->surname, s->number);//same format as fprintf used in newRecord
        if (strcmp(name,s->name) == 0)   //comparison
        {
            printf("qawsdsdf");
        }
      }}fclose(ptrFILE);}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM