關於c 讀取excel資料。

2021-04-02 00:30:27 字數 639 閱讀 7188

首先,載入excel的元件,也就是microsoft excel11.0 objct labrary或者是microsoft excel10.0 object labrary.

一般在安裝了officer2002以上版本的軟體後都在安裝目錄中找到該檔案。

然後,開啟.net開發環境。新建乙個c#工程。然後新增引用,在com元件中找到microsoft excel11.0 objct labrary或者是microsoft excel10.0 object labrary。新增到工程中。

在程式中,宣告excel的變數,如下:

private excel.workbook   book;

private excel.worksheet sheet;

book=exl.workbooks.get_item(1);

sheet=book.worksheet[1];

string str1,str2,str3;

str1=sheet.rows[1,1].tostring();

str2=sheet.rows[1,2].tostring();

str3=sheet.rows[1,3].tostring();

----------下邊為你要做的業務**--------------------

c 讀取Excel資料不全

讀取方式 string connstr provider microsoft.ace.oledb.12.0 data source filepath extended properties excel 12.0 hdr no imex 1 可以先參考 該文對excel的讀取做了詳盡說明。本文主要提供...

c 讀取Excel表資料

1,使用oledb可以對excel檔案進行讀取.private dataset readexceltodataset string path 存放所有的sheet dataset set newdataset for int i 0 i sheetsname.rows.count i sheetna...

讀取Excel資料

方法2 相當簡單,excel就像資料庫,每個sheet就是乙個table.microsoft.jet.oledb驅動.之後是datareader迴圈,或dataset處理都非常簡單.注意 資料型別的轉換 region set connection string strconn provider mi...