从文本文件中读取一行并将以空格分隔的数据放入结构中
Read a line from text file and place data separated by spaces inside struct
我必须用 C 语言编写一个函数,它将文件指针和 returns 结构作为输入:
typedef struct product{
char * code_product;
char * name;
char * code_piece;
only_time_t enter;
only_time_t exit;
}product_t;
这个结构使用另一个这样的结构:
typedef struct only_time{
int hour;
int minute;
int second;
}only_time_t;
为了从文件中读取,我使用 getline()
函数并使用 strtok()
函数创建标记。这是我用来从文件中读取的函数:
product_t * read_line(FILE * fp){
char * line = NULL;
size_t len = 0;
product_t * temp;
int i = 0;
temp = (product_t *) malloc(sizeof(product_t));
temp->code_product = (char *) malloc(sizeof(char) * 4);
temp->name = (char *) malloc(sizeof(char) * 60);
temp->code_piece = (char *) malloc(sizeof(char) * 4);
//read a line from the file
getline(&line, &len, fp);
//handle line info info
char *tokens[80];
tokens[0] = strtok(line," ,.");
while (tokens[i] != NULL) {
i++;
tokens[i] = strtok(NULL," ,.");
}
temp->code_product = tokens[0];
temp->name = tokens[1];
temp->code_piece = tokens[2];
temp->enter = timestring_to_time(tokens[3]);
temp->exit = timestring_to_time(tokens[4]);
//cleanup
if (line)
free(line);
return(temp);
}
为了查看程序读取了什么,我使用了一个打印结构的简单函数:
void print_product(product_t * product){
printf("product_t code_product: %s \n", product->code_product);
printf("product_t name: %s \n", product->name);
printf("product_t code_piece: %s \n", product->code_piece);
printf("product_t enter: %d:%d:%d \n", product->enter.hour,product->enter.minute,product->enter.second);
printf("product_t exit: %d:%d:%d \n", product->exit.hour,product->exit.minute,product->exit.second);
}
我已经设置了一个测试用例,它在文本文件中包含以下行(称为 test.txt 并放置在与可执行文件相同的文件夹中):
H235 Sportello_dx N246 15:20:43 15:27:55
但是程序的输出是:
product_t code_product: ��)��
product_t name:
product_t code_piece: N246
product_t enter: 15:20:43
product_t exit: 15:27:55
这是一个包含完整代码的 pastebin 运行:https://pastebin.com/9rz0vM5G
为什么我在前两行得到了这个奇怪的输出,但其余的却在工作?
strtok() 在解析字符串时修改字符串,returns 指向同一字符串内部,在您的例子中是 line
。因此,当您稍后 free(line)
时,您释放了 temp
结构引用的内存。研究 strdup()
.
我必须用 C 语言编写一个函数,它将文件指针和 returns 结构作为输入:
typedef struct product{
char * code_product;
char * name;
char * code_piece;
only_time_t enter;
only_time_t exit;
}product_t;
这个结构使用另一个这样的结构:
typedef struct only_time{
int hour;
int minute;
int second;
}only_time_t;
为了从文件中读取,我使用 getline()
函数并使用 strtok()
函数创建标记。这是我用来从文件中读取的函数:
product_t * read_line(FILE * fp){
char * line = NULL;
size_t len = 0;
product_t * temp;
int i = 0;
temp = (product_t *) malloc(sizeof(product_t));
temp->code_product = (char *) malloc(sizeof(char) * 4);
temp->name = (char *) malloc(sizeof(char) * 60);
temp->code_piece = (char *) malloc(sizeof(char) * 4);
//read a line from the file
getline(&line, &len, fp);
//handle line info info
char *tokens[80];
tokens[0] = strtok(line," ,.");
while (tokens[i] != NULL) {
i++;
tokens[i] = strtok(NULL," ,.");
}
temp->code_product = tokens[0];
temp->name = tokens[1];
temp->code_piece = tokens[2];
temp->enter = timestring_to_time(tokens[3]);
temp->exit = timestring_to_time(tokens[4]);
//cleanup
if (line)
free(line);
return(temp);
}
为了查看程序读取了什么,我使用了一个打印结构的简单函数:
void print_product(product_t * product){
printf("product_t code_product: %s \n", product->code_product);
printf("product_t name: %s \n", product->name);
printf("product_t code_piece: %s \n", product->code_piece);
printf("product_t enter: %d:%d:%d \n", product->enter.hour,product->enter.minute,product->enter.second);
printf("product_t exit: %d:%d:%d \n", product->exit.hour,product->exit.minute,product->exit.second);
}
我已经设置了一个测试用例,它在文本文件中包含以下行(称为 test.txt 并放置在与可执行文件相同的文件夹中):
H235 Sportello_dx N246 15:20:43 15:27:55
但是程序的输出是:
product_t code_product: ��)��
product_t name:
product_t code_piece: N246
product_t enter: 15:20:43
product_t exit: 15:27:55
这是一个包含完整代码的 pastebin 运行:https://pastebin.com/9rz0vM5G
为什么我在前两行得到了这个奇怪的输出,但其余的却在工作?
strtok() 在解析字符串时修改字符串,returns 指向同一字符串内部,在您的例子中是 line
。因此,当您稍后 free(line)
时,您释放了 temp
结构引用的内存。研究 strdup()
.