Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/opencv/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何使用excel工作表单元格的字段名获取其值_C#_Excel_Closedxml - Fatal编程技术网

C# 如何使用excel工作表单元格的字段名获取其值

C# 如何使用excel工作表单元格的字段名获取其值,c#,excel,closedxml,C#,Excel,Closedxml,我想根据我在表格中指定的标题从Excel表格中提取数据。 我正在使用ClosedXML并使用cell Number获取数据。下面是我的代码 FileInfo fi = new FileInfo(path1); //Open uploaded workbook var workBook = new XLWorkbook(fi.FullName);

我想根据我在表格中指定的标题从Excel表格中提取数据。 我正在使用ClosedXML并使用cell Number获取数据。下面是我的代码

                    FileInfo fi = new FileInfo(path1);    
                    //Open uploaded workbook
                    var workBook = new XLWorkbook(fi.FullName);
                    //Get the first sheet of workbook
                    var worksheet = workBook.Worksheet(1);

                    var firstRowUsed = worksheet.FirstRowUsed();
                    var categoryRow = firstRowUsed.RowUsed();

               /Get the column names from first row of excel
                Dictionary<int, string> keyValues = new Dictionary<int,string>();
                for (int cell = 1; cell <= categoryRow.CellCount(); cell++)
                {
                    keyValues.Add(cell, categoryRow.Cell(cell).GetString());
                }

                //Get the next row
                categoryRow = categoryRow.RowBelow();
                while (!categoryRow.Cell(coCategoryId).IsEmpty())
                {
                    int count = 1;
                    var pc = new ExpandoObject();
                    while (count <= categoryRow.CellCount())
                    {
                        // let this go through-if the data is bad, it will be rejected by SQL
                        var data = categoryRow.Cell(count).Value;
                        ((IDictionary<string, object>)pc).Add(keyValues[count], data);
                        //((IDictionary<string, object>)pc).Add(keyValues[count], data);
                        fName = categoryRow.Cell(1).Value.ToString();
                        lName = categoryRow.Cell(2).Value.ToString();
                        userGender = categoryRow.Cell(3).Value.ToString();
                        roleTitle = categoryRow.Cell(4).Value.ToString();
                        mobileNumber = categoryRow.Cell(5).Value.ToString();
                        CurrentCity = categoryRow.Cell(6).Value.ToString();
                        country = categoryRow.Cell(7).Value.ToString();
                        birthDate = DateTime.UtcNow.ToLocalTime();      

下面是代码,我想根据excel工作表中的字段名提取数据,如name、lastname、city…等。如何实现此操作。

您可以使用OLEDB从excel文件提取数据,并将其存储在数据表中,然后做任何您想做的事情

下面是一个函数,它将以DataTable格式返回excel文件

private System.Data.DataTable call()
    {
        System.Data.DataTable dt = new System.Data.DataTable();
        string FilePath = Server.MapPath("~/Reports/") + Path.GetFileName(FileUpload1.PostedFile.FileName);
        FileUpload1.SaveAs(FilePath);
        string extension = Path.GetExtension(FileUpload1.PostedFile.FileName);

        string conStr = "";
        switch (extension)
        {
            case ".xls": //Excel 97-03
                conStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties='Excel 8.0;HDR=YES'";
                break;

            case ".xlsx": //Excel 07
                conStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 8.0;HDR=YES'";
                break;
        }
        conStr = String.Format(conStr, FilePath, "YES");
        OleDbConnection connExcel = new OleDbConnection(conStr);

        OleDbCommand cmdExcel = new OleDbCommand();
        OleDbDataAdapter oda = new OleDbDataAdapter();

        cmdExcel.Connection = connExcel;

        connExcel.Open();
        System.Data.DataTable dtExcelSchema;
        dtExcelSchema = connExcel.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
        string SheetName = dtExcelSchema.Rows[0]["TABLE_NAME"].ToString();
        connExcel.Close();

        connExcel.Open();


        cmdExcel.CommandText = "SELECT [ColumnName1] , [ColumnName2]  From [report$A10:U16384] where  [ColumnName1] is not null";//any Condition
        oda.SelectCommand = cmdExcel;
        oda.Fill(dt);
        connExcel.Close();


        return dt;
    }