ClosedXML、DocumentFormat.OpenXml导出DataTable到Excel

在很多系统中都用到导出,使用过多种导出方式,觉得ClosedXML插件的导出简单又方便。

并且ClosedXML、DocumentFormat.OpenXml都是MIT开源。

首先通过 Nuget 安装 ClosedXML 插件,同时会自动安装 DocumentFormat.OpenXml 插件。

以下就是导出相关的代码:

1、MVC控制器中的导出

// MVC 控制器中
/// <summary>
/// 导出 (无论是否需要返回值,都有 Response)
/// </summary>
public void Export1() // 传入搜索条件
{
    // 1、根据条件查询到想要的数据
    DataTable data = new DataTable();
    // 2、设置表名(对应sheet名)、列名(对应列名)
    data.TableName = "XX统计";
    // 3、列宽设置(拖动Excel列宽度时,会显示{宽度:10.00 (75像素)|宽度:20.00 (145像素)}推算宽度1为7像素,每列自加5像素;默认大小的汉字,一个字宽约15.3px)
    int[] colsWidth = new int[] { 160, 200, 300, 160 };
    // 4、生成导出文件
    byte[] filedata = ExportHelper.ExportExcel(data);
    // 5、输出文件流
    HttpContext.Output(filedata, "XX统计_导出" + DateTime.Today.ShowDate() + ".xlsx");
}

2、生成导出文件

using ClosedXML.Excel;
using System.Data;
using System.IO;

/// <summary>
/// 导出Excel文件
/// </summary>
/// <param name="data">导出的数据</param>
/// <param name="colsWidth">列宽</param>
/// <returns></returns>
public static byte[] ExportExcel(DataTable data, int[] colsWidth = null)
{
    using (XLWorkbook workbook = new XLWorkbook())
    {
        IXLWorksheet worksheet = workbook.AddWorksheet(data.TableName);

        // 处理列
        for (int i = 0; i < data.Columns.Count; i++)
        {
            worksheet.Cell(1, i + 1).Value = data.Columns[i].ColumnName;
            worksheet.Cell(1, i + 1).Style.Font.Bold = true;
        }

        // 处理列宽
        if (colsWidth != null)
        {
            for (int j = 1; j <= colsWidth.Length; j++)
            {
                worksheet.Columns(j, j).Width = colsWidth[j - 1];
            }
        }

        // 处理数据
        int r = 2;// 第二行开始
        foreach (DataRow dr in data.Rows)
        {
            // 第一列开始
            for (int c = 1; c <= data.Columns.Count; c++)
            {
worksheet.Cell(r, c).SetValue<string>(dr[c-1].ToString()); // worksheet.Cell(r, c).Value = dr[c-1].ToString(); // 存在数据类型隐患,自动转换数字、日期、时间格式的数据,显示出来的可能不是想要的
// worksheet.Cell(r, c).DataType = XLDataType.Text; // 1、先设置格式,赋值后,会自动根据数据重新改变格式,2、先赋值,后设置格式,存在日期变为数字情况;
} r++; } // 缓存到内存流,然后返回 using (MemoryStream stream = new MemoryStream()) { workbook.SaveAs(stream); return stream.ToArray(); } } }

3、输出文件流

using System.Text;
using System.Text.RegularExpressions;
using System.Web;

/// <summary>
/// 输出文件流
/// </summary>
/// <param name="httpContext">Http上下文</param>
/// <param name="filedata">文件数据</param>
/// <param name="fileName">文件名(要后缀名)</param>
public static void Output(this HttpContextBase httpContext, byte[] filedata, string fileName)
{
    //文件名称效验 文件名不能包含\/:*?<>| 其中\需要两次转义
    if (Regex.IsMatch(fileName, @"[\\/:*?<>|]"))
    {
        fileName = Regex.Replace(fileName, @"[\\/:*?<>|]", "_");
    }

    //判断是否为火狐浏览器(下载时,有些浏览器中文名称乱码,有些浏览器中文名正常,但不能编码,不会自动解码,如火狐)
    if (httpContext.Request.Browser.Browser != "Firefox")
    {
        fileName = HttpUtility.UrlEncode(fileName, Encoding.UTF8);
    }

    // 没有定义类型,用二进制流类型的MIME
    string MIME = "application/octet-stream";
    httpContext.Response.Clear();
    httpContext.Response.Buffer = true; //该值指示是否缓冲输出,并在完成处理整个响应之后将其发送
    httpContext.Response.ContentType = MIME;
    httpContext.Response.ContentEncoding = Encoding.UTF8;
    httpContext.Response.Charset = Encoding.UTF8.HeaderName;
    httpContext.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
    httpContext.Response.AddHeader("Accept-Language", "zh-cn");
    httpContext.Response.AddHeader("Content-Length", filedata.LongLength.ToString());
    httpContext.Response.BinaryWrite(filedata);
    httpContext.Response.Flush();
    httpContext.Response.End();
}

通过ClosedXML导出操作方便。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值