zoukankan      html  css  js  c++  java
  • C#找到Excel中的所有Sheetname的方法

    #region 找到Excel的所有Sheetname
            /// <summary>
            /// 找到Excel的所有Sheetnames
            /// </summary>
            /// <returns>返回Sheetnames</returns>
            private List<string> ExcelSheetName()
            {
                string conString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + txt_Filepath.Text + ";Extended Properties=Excel 8.0;";
                List<string> sheetNames = new List<string>();
                using (OleDbConnection con = new OleDbConnection(conString))
                {
                    con.Open();
                    System.Data.DataTable sheetName = con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "table" });
                    con.Close();
                    foreach (DataRow var in sheetName.Rows)
                    {
                        sheetNames.Add(var[2].ToString());
                    }
                }
                return sheetNames;
            }
            #endregion

  • 相关阅读:
    设计模式六大原则
    .net Stream篇(七)
    .net Stream篇(六)
    .net Stream篇(五)
    .net Stream篇(四)
    Leetcode 18
    Leetcode 16
    Leetcode 15
    Leetcode 12
    Leetcode 9
  • 原文地址:https://www.cnblogs.com/jasonjiang/p/1787819.html
Copyright © 2011-2022 走看看