C:逐行读取文件并将数据插入结构

时间:2014-07-08 05:55:12

标签: c

我需要读取文本文件并将数据存储在结构中。我已经完成了使用FILE *fp = fopen("datafile.txt", "r")使用fgets(buffer, sizeof(buffer), fp)打开文件的部分来读取数据。我的文件结构如下

John is enrolled in MATH 1314
Steve is enrolled in MATH 1314


struct course {
   char name[20];
   char department[4];
   int number[4];
};

int main(void)
{
  FILE *fp;
  char* token;
  char* line[50];

  struct course student; 

  fp = fopen("input-hw04b.txt", "r");
  while (fgets(line, sizeof(line), fp) != NULL)
  {
     token = strtok(buffer, " ");
     while (token != NULL)
     {
        /* Add structures here */
        token = strtok(NULL, " ");
     }
  }
}

我需要存储以下内容

  • John in student.name
  • student.department的MATH
  • 1314 in student.number

到目前为止,这就是我所拥有的,我仍然坚持如何将这些数据放入结构中。我从一个文本文件中提取数据,逐行读取,然后对其进行标记,以便我尝试将其放入结构中。

2 个答案:

答案 0 :(得分:1)

以下是基于您现有代码的一些提示。

 int count = 0;
 token = strtok(buffer, " ");
 while (token != NULL)
 {
       if (count == 0)
       {
           strncpy(student.name, token, 20);
           student.name[19] = '\0'; // ensure null termination
       }
       else if (count == 1)
       {
           /* validate "is" */
           if (strcmp(token, "is") != 0)
               break;
       }
       else if (count == 2) { /*validate "enrolled"*/  }

       else if (count == 3) { /* validate "in"*/  }

       else if (count == 4)
       {
           // set the department field
       }
       else if (count == 5)
       {
           // set the number field
       }
       count++;


       token = strtok(NULL, " ");
 }

当然,这个例子没有处理一些健壮性问题(例如,name可能是> = 20个字符,或者字符串可能只有3个字,等等......)。但是应该让你开始......

答案 1 :(得分:0)

您可以按如下方式解析和存储字符串结构

/*Add Structres Here*/
token = strtok(line, " ");
int j = 1;
strncpy(student.name,token,strlen(token));
while(token!=NULL)
{
    token = strtok(NULL, " ");
    switch(j)
    {
        case 5: strncpy(student.department,token,strlen(token));
                break;

        case 6: student.number = atoi(token);
                break;
    }
    j++;
}
j=0;

/*Your outer loop code continues*/

同样在您的结构声明中,您已经给出了int number[4](存储了4个整数),这在您的情况下是错误的,请将其更改为int number。并且char* line[50]中的char line[50]在此上下文中也不正确,请将其更改为{{1}}。