C#如何获取Excel工作薄中Sheet页(工作表)名集合
合集下载
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
11. try
12. {
13.
string connString=string.Empty;
14.
string FileType =fileName.Substring(stIndexOf("."));
15.
if (FileType == ".xls")
16.
connString = "Provider=Microsoft.Jet.OLEDB.4.0;" +
26.
if (dt == null)
27.
{
28.
return null;
29.
}
30.
String[] excelSheets = new String[dt.Rows.Count];
31.
int i = 0;
32.
// 添加工作表名称到字符串数组
33.
foreach (DataRow row in dt.Rows)
46. {
47.
MessageBox.Show(ex.ToString());
48.
return null;
49. }
50. finally
51. {
52.
// 清理
53.
if (objConn != null)
54.
{
55.
objConn.Close();
56.
objConn.Dispose();
C#如何获取 Excel 工作薄中 Sheet 页(工作表)名集合
#region 获取 Excel 工作薄中 Sheet 页(工作表)名集合
02./// <summary>
03./// 获取 Excel 工作薄中 Sheet 页(工作表)名集合
04./// </summary>
05./// <param name="excelFile">Excel 文件名及路径,EG:C:\Users\JK\Desktop\导入测试.xls</param>
20.
// 创建连接对象
21.
objConn = new OleDbConnection(connString);
22.
// 打开数据库连接
23.
objConn.Open();
24.
// 得到包含数据架构的数据表
25.
dt = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
06./// <returns>Sheet 页名称集合</returns>
07.private String[] GetExcelSheetNames(string fileName)
08.{
09. OleDbConnection objConn = null;
10. System.Data.DataTable dt = null;
38.
{
39.
excelSheets[i] = strSheetTableName.Substring(0, strSheetTableName.Length - 1);
40.
}
41.
i++;
42.
}
43.
return excelSheets;
44. }
45. catch (Exception ex)
57.
}
58.
if (dt != null)
5ispose();
61.
}
62. }
63.}
64.#endregion
本文 URL:/Programming/csharp/201410/45597.htm
17.
"Data Source=" + fileName + ";Extended Properties=Excel 8.0;";
18.
else//.xlsx
19.
connString = "Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=" + fileName + ";" + ";Extended Properties=\"Excel 12.0;HDR=YES;IMEX=1\"";
34.
{
35.
string strSheetTableName = row["TABLE_NAME"].ToString();
36.
//过滤无效 SheetName
37.
if (strSheetTableName.Contains("$")&&strSheetTableName.Replace("'", "").EndsWith("$"))