溫馨提示×

C語言怎么讀取excel數(shù)據(jù)存到數(shù)組

小億
252
2024-03-22 18:45:45
欄目: 編程語言

在C語言中,可以使用第三方庫來讀取Excel數(shù)據(jù)并存儲到數(shù)組中。一個常用的庫是libxls,通過該庫可以讀取Excel文件中的數(shù)據(jù),并將其存儲到數(shù)組中。

以下是一個簡單的示例代碼,演示了如何使用libxls庫讀取Excel數(shù)據(jù)并存儲到數(shù)組中:

#include <stdio.h>
#include "xls.h"

int main() {
    xlsWorkBook* pWB;
    xlsWorkSheet* pWS;
    struct st_row::st_cell* cell;
    
    // 打開Excel文件
    pWB = xls_open("example.xls", "UTF-8");
    if (pWB == NULL) {
        printf("無法打開Excel文件\n");
        return 1;
    }
    
    // 獲取第一個工作表
    pWS = xls_getWorkSheet(pWB, 0);
    
    // 讀取數(shù)據(jù)并存儲到數(shù)組中
    int row, col;
    for (row = 0; row <= pWS->rows.lastrow; ++row) {
        for (col = 0; col <= pWS->rows.lastcol; ++col) {
            cell = xls_cell(pWS, row, col);
            if (cell != NULL) {
                // 將數(shù)據(jù)存儲到數(shù)組中或進(jìn)行其他操作
                printf("%s ", cell->str);
            }
        }
        printf("\n");
    }
    
    // 關(guān)閉Excel文件
    xls_close_WS(pWS);
    xls_close_WB(pWB);
    
    return 0;
}

在上面的示例中,首先打開Excel文件,然后獲取第一個工作表,并逐行逐列讀取數(shù)據(jù)并存儲到數(shù)組中。最后關(guān)閉Excel文件。需要注意的是,需要在使用該代碼之前安裝libxls庫,并將其相關(guān)頭文件和庫文件包含到項目中。

0