有时候我们会使用C#里读取excel文档,其实读取excel文档是很简单的,下面是代码:
private DataTable getTable()
{
try
{
// path即是excel文档的路径。
string conn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source= Path"+";Extended Properties=Excel 8.0;";
//Sheet1为excel中表的名字
string sql = "select * from ["Sheet1$]";
OleDbCommand cmd = new OleDbCommand(sql, new OleDbConnection(conn));
OleDbDataAdapter ad = new OleDbDataAdapter(cmd);
DataSet ds = new DataSet();
ad.Fill(ds);
return ds.Tables[0];
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return null;
}
}