C語言進行csv文件數據的讀取

C語言進行csv文件數據的讀取:數組

#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include <math.h>

int main(){
    FILE *fp = NULL;
    char *line,*record;
    char buffer[20450];//20450這個數組大小也要根據本身文件的列數進行相應修改。

    if((fp = fopen("All-w.csv", "r")) != NULL)
    {
        fseek(fp, 16415L, SEEK_SET);  //定位到第二行,每一個英文字符大小爲1,16425L這個參數根據本身文件的列數進行相應修改。

        while ((line = fgets(buffer, sizeof(buffer), fp))!=NULL)//當沒有讀取到文件末尾時循環繼續
        {
            record = strtok(line, ",");
            while (record != NULL)//讀取每一行的數據
            {
                printf("%s ", record);//將讀取到的每個數據打印出來
                record = strtok(NULL, ",");
            }
        }
        fclose(fp);
        fp = NULL;
    }
}
相關文章
相關標籤/搜索