asp.net C#取Excel 合併儲存格內容

來源:互聯網
上載者:User

asp教程.net c#取excel 合併儲存格內容
讀取excel資料,填充dataset
// 連接字串

string xlspath = server.mappath("~/www.111cn.net/somefile.xls");
string connstr = "provider=microsoft.jet.oledb.4.0;" +
"extended properties="excel 8.0;hdr=no;imex=1";" + // 指定擴充屬性為 microsoft excel 8.0 (97) 9.0 (2000) 10.0 (2002),並且第一行作為資料返回,且以文本方式讀取
"data source=" + xlspath;
string sql_f = "select * from [{0}]";

oledbconnection conn = null;
oledbdataadapter da = null;
datatable tblschema = null;
ilist<string> tblnames = null;

// 初始化串連,並開啟
conn = new oledbconnection(connstr);
conn.open();

// 擷取資料來源的表定義中繼資料
//tblschema = conn.getschema("tables");
tblschema = conn.getoledbschematable(oledbschemaguid.tables, new object[] { null, null, null, "table" });

//gridview1.datasource = tblschema;
//gridview1.databind();

// 關閉串連
//conn.close();

tblnames = new list<string>();
foreach (datarow row in tblschema.rows) {
tblnames.add((string)row["table_name"]); // 讀取表名
}

// 初始化適配器
da = new oledbdataadapter();
// 準備資料,匯入dataset
dataset ds = new dataset();

foreach (string tblname in tblnames) {
da.selectcommand = new oledbcommand(string.format(sql_f, tblname), conn);
try {
da.fill(ds, tblname);
}
catch {
// 關閉串連
if (conn.state == connectionstate.open) {
conn.close();
}
throw;
}
}

// 關閉串連
if (conn.state == connectionstate.open) {
conn.close();
}

// 對匯入dataset的每張sheet進行處理
// 這裡僅做顯示
gridview1.datasource = ds.tables[0];
gridview1.databind();

gridview2.datasource = ds.tables[1];
gridview2.databind();

// more codes


// .
這裡我們就不需要對selec 語句進行"寫入程式碼",可以根據需要動態構造from 字句的"表名"。

不僅可以,擷取表明,還可以擷取每張表內的欄位名、欄位類型等資訊:
tblschema = conn.getoledbschematable(oledbschemaguid.columns, new object[] { null, null, null, null });
在ado.net 1.x 時候只有oledb提供了getoledbschematable 方法,而sqlclient或者orcaleclient沒有對應的方法,因為對應資料庫教程已經提供了類似功能的預存程序或者系統資料表供應用程式訪問,比如對於sql server: select *
from northwind.information_schema.columns
where table_name = n'customers'

而在ado.net 2.0中每個xxxconnenction都實現了基類system.data.common.dbconnection的 getschemal


private dataset binddsfromexcel(string strfiledir, string strdataname)
{
string strconn;
strconn = "provider=microsoft.jet.oledb.4.0;data source=" + strfiledir + ";extended properties='excel 8.0;hdr=false;imex=1'";
oledbconnection oleconn = new oledbconnection(strconn);
oleconn.open();
string sql = "select * from [" + strdataname + "$]";//如果不知道名字就用sheets[1]

oledbdataadapter oledaexcel = new oledbdataadapter(sql, oleconn);
dataset oledsexcle = new dataset();
oledaexcel.fill(oledsexcle, strdataname);
oleconn.close();
return oledsexcle;
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.