0

我正在获取 excel 工作表名称,但只是包含数据的工作表。

String fpath = "Provider=Microsoft.ACE.OLEDB.12.0; data source=" +tbpath.Text+ ";Extended Properties='Excel 12.0 Xml;HDR=YES';";
file = new OleDbConnection(fpath);
file.Open();
dt = file.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);

if (dt == null)
{
    //return null;
}
cbsheet.Enabled = true;
//String[] excelSheets = new String[dt.Rows.Count];
//int i = 0;

// Add the sheet name to the string array.
foreach (DataRow row in dt.Rows)
{
    if (row["TABLE_NAME"].ToString().Contains("$") )//checks whether row contains '_xlnm#_FilterDatabase' or sheet name(i.e. sheet name always ends with $ sign)
    {
        cbsheet.Items.Add(row["TABLE_NAME"].ToString());
    }
}

//return excelSheets;
}
catch (Exception ex)
{
    MessageBox.Show("ERROR: "+ex);
}
4

2 回答 2

0

您可以检查每张纸的行,即

try 
{
    foreach (DataRow row in dt.Rows)
    {
        if (row["TABLE_NAME"].ToString().Contains("$") )
        {
            OleDbCommand cmd = new OleDbCommand(
              "select * from [" + row["TABLE_NAME"].ToString() + "]", file);

            using (DbDataReader dr = cmd.ExecuteReader())
            {
                if (dr.HasRows)
                {
                    cbsheet.Items.Add(row["TABLE_NAME"].ToString());
                }
                dr.close();
            }
        }
    }
}
catch (Exception ex)
{
    MessageBox.Show("ERROR: "+ex);
}
于 2013-10-24T08:01:52.377 回答
0

您可以将它们排除在添加之外。

我使用此代码过滤掉空工作表。原来它们是用户不应该访问的工作表。

您可以通过 2 种方式解决此问题。

一个。别理他们

湾。放下床单。

我强烈建议选择前者。

使用此代码;

if (!dt.Rows[i]["Table_Name"].ToString().Contains("FilterDatabase") && !dt.Rows[i]["Table_Name"].ToString().EndsWith("$'"))
{
}
于 2018-01-30T02:40:14.230 回答