您的位置:首页 > 编程语言 > C#

C#获取excel中sheel名称

2015-07-24 14:37 429 查看
public static DataTable GetExcelTable(string excelFilename)

{

string connectionString = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Jet OLEDB:Engine Type=35;Extended Properties=Excel 8.0;Persist Security Info=False",excelFilename);

DataSet ds = new DataSet();

string tableName;

using (System.Data.OleDb.OleDbConnection connection = new System.Data.OleDb.OleDbConnection(connectionString))

{

connection.Open();

DataTable table = connection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, null);

tableName = table.Rows[0]["Table_Name"].ToString();

string strExcel = "select * from " + "[" + tableName + "]";

OleDbDataAdapter adapter = new OleDbDataAdapter(strExcel, connectionString);

adapter.Fill(ds, tableName);

connection.Close();

}

return ds.Tables[tableName];

}

//VB Code

Dim connectionString As String '
Used to store the connection string
Dim customerList As New DataSet '
Used to store the temp records readed from the Excel file
Dim excelData As OleDb.OleDbDataAdapter

connectionString = String.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data
Source={0};Extended Properties=""Excel 12.0;HDR=YES"";", fileName)
excelData = New OleDb.OleDbDataAdapter("SELECT * FROM [Sheet1$]",
connectionString)
excelData.TableMappings.Add("Sheet1", "ImportCustomer")

excelData.Fill(customerList)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: