1

我正在尝试从文本文件中读取并将其存储到一个数组中,但是我的最后一个数组充满了垃圾,有什么办法可以修复它吗?作为参考,我不需要最后一行值,但我似乎找不到摆脱它的方法。

int k;
char string[100];
for(k = 0; k < MAX_STATIONS; k++){
    if (fgets(string, sizeof(string), fp) == 0){
        break;
    }
    fscanf(fp,"%d %f %d %d %d %d %d %f %f", &stationInfo[k].stationID, &stationInfo[k].temperature, &stationInfo[k].year, &stationInfo[k].month, &stationInfo[k].day, &stationInfo[k].hour, &stationInfo[k].minute, &stationInfo[k].location.latitude, &stationInfo[k].location.longitude);
    printf("%d %1.2f %d %d %d %d %d %f %f\n", stationInfo[k].stationID, stationInfo[k].temperature, stationInfo[k].year, stationInfo[k].month, stationInfo[k].day, stationInfo[k].hour, stationInfo[k].minute, stationInfo[k].location.latitude, stationInfo[k].location.longitude);
}

编辑:我意识到使用这种方法,我实际上并没有读取文件的第一行。我该如何解决这个问题?

4

1 回答 1

2

您应该检查fscanf的返回值, 它返回读取字段的数量并忽略(或打印警告)不完整的行。另一个想法是检查 100 个字符是否真的足够长以容纳最长的线(+ EOS)。

于 2013-11-11T21:46:19.667 回答