首頁 > 軟體

C#把DataTable匯出為Excel檔案

2022-04-10 19:00:27

實現DataTable轉為Excel檔案,和上次分享的Excel檔案轉為DataTable互為反操作。DataTable轉化為Excel檔案是通過傳入一個DataTable型別的引數,然後將傳入的DataTable轉化為Excel檔案。實現關鍵程式碼如下:

方法一:

/// <summary>
/// DataTable資料匯出Excel
/// </summary>
/// <param name="data"></param>
/// <param name="filepath"></param>
public static void DataTableExport(DataTable data, string filepath)
{
    try
    {
        //Workbook book = new Workbook("E:\test.xlsx"); //開啟工作簿
        Workbook book = new Workbook(); //建立工作簿
        Worksheet sheet = book.Worksheets[0]; //建立工作表
        Cells cells = sheet.Cells; //單元格
        //建立樣式
        Aspose.Cells.Style style = book.Styles[book.Styles.Add()];
        style.Borders[Aspose.Cells.BorderType.LeftBorder].LineStyle = Aspose.Cells.CellBorderType.Thin; //應用邊界線 左邊界線  
        style.Borders[Aspose.Cells.BorderType.RightBorder].LineStyle = Aspose.Cells.CellBorderType.Thin; //應用邊界線 右邊界線  
        style.Borders[Aspose.Cells.BorderType.TopBorder].LineStyle = Aspose.Cells.CellBorderType.Thin; //應用邊界線 上邊界線  
        style.Borders[Aspose.Cells.BorderType.BottomBorder].LineStyle = Aspose.Cells.CellBorderType.Thin; //應用邊界線 下邊界線   
        style.HorizontalAlignment = TextAlignmentType.Center; //單元格內容的水平對齊方式文字居中
        style.Font.Name = "宋體"; //字型
        style1.Font.IsBold = true; //設定粗體
        style.Font.Size = 11; //設定字型大小
        //style.ForegroundColor = System.Drawing.Color.FromArgb(153, 204, 0); //背景色
        //style.Pattern = Aspose.Cells.BackgroundType.Solid; //背景樣式
        //style.IsTextWrapped = true; //單元格內容自動換行
        
        //表格填充資料
        int Colnum = data.Columns.Count;//表格列數 
        int Rownum = data.Rows.Count;//表格行數 
        //生成行 列名行 
        for (int i = 0; i < Colnum; i++)
        {
            cells[0, i].PutValue(data.Columns[i].ColumnName); //新增表頭
            cells[0, i].SetStyle(style); //新增樣式
            //cells.SetColumnWidth(i, data.Columns[i].ColumnName.Length * 2 + 1.5); //自定義列寬
            //cells.SetRowHeight(0, 30); //自定義高
        }
        //生成資料行 
        for (int i = 0; i < Rownum; i++)
        {
            for (int k = 0; k < Colnum; k++)
            {
                cells[1 + i, k].PutValue(data.Rows[i][k].ToString()); //新增資料
                cells[1 + i, k].SetStyle(style); //新增樣式
            }
            cells[1 + i, 5].Formula = "=B" + (2 + i) + "+C" + (2 + i);//給單元格設定計算公式,計算班級總人數
        }
        sheet.AutoFitColumns(); //自適應寬
        book.Save(filepath); //儲存
        GC.Collect();
    }
    catch (Exception e)
    {
        logger.Error("生成excel出錯:" + e.Message);
    }
}

方法二:

public void ToExcel(DataTable dt)
    {
        #region 3s  
        var FilePath = @"D:ToExcel";//產生Excel檔案路徑
        DeleteFile(FilePath);
        //建立全新的Workbook 
        var workbook = new HSSFWorkbook();//一個sheet最多65536行
        var count = 0;
        for (double i = 0; i < Convert.ToDouble(dt.Rows.Count) / Convert.ToDouble(65534); i++)//每個Excel檔案的一個頁籤只能存放65536行資料
        {
            var row_index = 0;
            //建立Sheet
            workbook.CreateSheet("Sheet" + i);
            //根據Sheet名字獲得Sheet物件  
            var sheet = workbook.GetSheet("Sheet" + i);
            IRow row;
            row = sheet.CreateRow(row_index);

            //寫入標題
            for (int j = 0; j < dt.Columns.Count; j++)
            {
                row.CreateCell(j).SetCellValue(dt.Columns[j].Caption.ToString());
            }
            row = sheet.CreateRow(++row_index);

            //寫入資料
            for (int j = 0; j < (dt.Rows.Count - count > 65534 ? 65534 : dt.Rows.Count - count); j++)
            {
                var r = dt.Rows[j + count];
                for (int k = 0; k <dt.Columns.Count; k++)
                {
                    row.CreateCell(k).SetCellValue(r[k].ToString());

                    //如果是數位,判斷是否需要轉換為數位
                    //if (IsNumeric(r[k].ToString()))
                    //{
                    //    row.CreateCell(k).SetCellValue(Convert.ToDouble(r[k].ToString()));
                    //}
                    //else
                    //{
                    //    row.CreateCell(k).SetCellValue(r[k].ToString());
                    //}
                }

                row = sheet.CreateRow(++row_index);
            }
            count += row_index - 2;
        }
        //儲存Workbook方式一: 以檔案形式儲存到伺服器中(每次匯出都會生成一個檔案,慎重使用)
        var FileName = DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";

        var sw = File.Create(FilePath + FileName);
        workbook.Write(sw);
        sw.Close();
        var EC = new ExcelConverter();
        EC.WebopenExcel(Response, FilePath + FileName);
        #endregion
    }

到此這篇關於C#把DataTable匯出為Excel檔案的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com