csharp 在C#中读取Excel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 在C#中读取Excel相关的知识,希望对你有一定的参考价值。

public class ExcelOperations
    {

        public List<List<string>> Read(string filePath)
        {

            OleDbConnection conn = new OleDbConnection("Provider = Microsoft.ACE.OLEDB.12.0; Data Source = " + filePath + "; Extended Properties = 'Excel 8.0; HDR=NO'");
            OleDbCommand cmd = new OleDbCommand("select * from [Sheet1$]", conn);
            conn.Open();
            OleDbDataReader dr = cmd.ExecuteReader();

            List<List<string>> data = new List<List<string>>();
            while (dr.Read())
            {
                var obj = dr.GetValue(0);
                if (obj == DBNull.Value) continue;

                var shortList = new List<string>();

                for (int i = 0; i < dr.FieldCount; i++)
                {
                    shortList.Add(dr[i].ToString());
                }

                data.Add(shortList);
            }
            conn.Close();

            return data;
        }

    }

以上是关于csharp 在C#中读取Excel的主要内容,如果未能解决你的问题,请参考以下文章

csharp 在C#中读取CSV文件

csharp 在C#中读取Web异常的主体

csharp Excel文件构造函数C#

csharp GetColumnLetterFromInt c#Excel

csharp 例如-CSHARP-GroupDocs.AssemblyExamples-GenerateReport-GenerateBulletedListFromJsoninOpenExcel.c

csharp excel报告#spreadsheet #devexpress#c#