我无法在C中解析CSV文件。我需要使用该文件中的数据来归档结构。这是我结构的相关部分:

typedef struct Info {
    /* Some strings, integers, etc. */
    char correct; /* This is the value I can't set */
    short int status;
} t_info;

我文件中的一行看起来像是 xxxxxx; xxxxxxx; xxxxxxx; D; 254 ( D 是我的问题,请参见下文)。
    char line[1024]; /* Buffer */
    t_info info;

    fgets(line, sizeof(line), fp);

    strcpy(info.xxxxxx, getLine(line, 1)); /* Works */
    strcpy(info.xxxxxx, getLine(line, 2)); /* Works */
    strcpy(info.xxxxxx, getLine(line, 3)); /* Works */
    strcpy(info.correct, getLine(line, 4)); /* Crashs! */

getLine()函数来自this帖子:
const char *getLine(char *line, int num)
{
    const char *tok, *tmp = strdup(line);

    for (tok = strtok(tmp, ";"); tok && *tok; tok = strtok(NULL, ";\n"))
    {
        if (!--num)
            return tok;
    }

    return NULL;
}

我怎么了

最佳答案

无法使用char保存到strcpy()中。

typedef struct Info {
    char correct; /* This is the value I can't set */
} t_info;

strcpy(info.correct, getLine(line, 4)); /* Crashs! */


info.correct = *getLine(line, 4);

您的编译器应该已经对此发出警告。查看编译器设置。

关于c - 解析CSV文本行时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34386545/

10-09 07:14