2014-12-14 3 views
0

создавшего-структуру, которая показана ниже:нужно использовать таНос или calloc для выделения памяти для данных из текстового файла, который будет храниться и как проверять данные в файле

struct entry 
{ 
    int source[5]; 
    int destination[5]; 
    int type[5]; 
    int port; 
    int data; 
} record; 

пользователь должен ввести имя файла и файлы должны быть проверены на определенные критерии, а затем сохранены, но я не уверен, как использовать функции malloc или calloc в моем коде, чтобы я мог это сделать. Также нужна помощь в том, как проверить текстовый файл. Фрагмент кода показан ниже:

int file() 
{ 
    FILE *inFile; 
    char inFileName[70]= {'\0'}; 
    char data1[70]; 
    char *token; 

    int x = 0; 
    int count = 0; 
    int length = 0; 

    printf("Enter File Name:"); 
    scanf("%s", inFileName); 

    if ((inFile = fopen(inFileName, "r"))== NULL) 
    { 
     printf("Open failed:%s\n", inFileName); 
     exit(1); 
    } 

    if (inFile != NULL) 
    { 
     while (!feof (inFile)) // Read the whole file until the end of the file. 
     { 
      count ++; 
      printf("\n\nRecord:%i\n", count); 
      fgets(data1, sizeof data1, inFile); //fgets reads the first string from the "inFile"  pointer and stores it in char "data" using the "sizeof" function to make sure strings are the same size. 

      token = strtok(data1, ":"); // the "token" pointer used with the "strtok" function to break down the "data" string into smaller tokens by using the delimiter ":" 
      record.source[5] = token; 
      printf("Source:%d\n", record.source); 
+0

ваш неправильно, вы хотите быть (feof (FP) == 0) – Bolboa

ответ

1

Вы можете использовать это, чтобы получить размер файла:

How do you determine the size of a file in C?

, а затем сделать таНос этого размера.

off_t size = fsize(inFileName); 
char *data = malloc((size + 1) * sizeof(char)); 
off_t offset = 0; 

и после того, как fgets хранить данные, как это: (! Feof (в файле))

fgets(data1, sizeof data1, inFile); 
strcpy(data + offset, data1); 
offset += strlen(data1); 
+0

" undefined reference to fsize "- ошибка, я возвращаюсь –

+0

Вам нужно скопировать функцию из скопированной ссылки. Вам нужно поставить его перед вашим файлом функции или поставить «off_t fsize (char *);» перед вашей функцией. Возможно, вам потребуется включить для типа off_t. – Telz