码迷,mamicode.com
首页 > 其他好文 > 详细

Excel转DataTable

时间:2019-08-20 15:17:10      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:return   white   pac   ace   open   work   access   space   add   

 

 

 public static DataTable ExcelToDatatable(string filepath, bool flag = false, int startRow = 1)
        {
            Workbook workbook = null;
            using (FileStream file = new FileStream(filepath, FileMode.Open, FileAccess.Read))
            {
                workbook = new Workbook(file);
            }

            var cells = workbook.Worksheets[0].Cells;
            DataTable dt = new DataTable();
            int rowIndex = 0;
            if (flag)
            {
                rowIndex = startRow;
            }
            bool d = true;//防止表头重复加载
            for (int i = rowIndex; i < cells.MaxDataRow + 1; i++)
            {
                if (!d && string.IsNullOrWhiteSpace(cells[i + 1, 0].StringValue.Trim()))
                {
                    continue;
                }
                DataRow row = dt.NewRow();
                for (int j = 0; j < cells.MaxDataColumn + 1; j++)
                {
                    if (d)
                    {
                        dt.Columns.Add(cells[0, j].StringValue.Trim());
                    }
                    row[j] = cells[i + 1, j].StringValue.Trim();
                }
                dt.Rows.Add(row);
                d = false;
            }
            return dt;
        }

 

Excel转DataTable

标签:return   white   pac   ace   open   work   access   space   add   

原文地址:https://www.cnblogs.com/xiaonangua/p/11382997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!