gpt4 book ai didi

c# - 即时创建 Excel 文件并将其下载/保存在客户端

转载 作者:行者123 更新时间:2023-11-30 23:12:05 25 4
gpt4 key购买 nike

问题:ASP.NET Core 1.1 中以下代码的最后三行有什么替代方法和/或解决方法是什么?在最后三行 VS2015 提示 HttpResponse 不包含 OutputStream、Flush()、End()

的定义

背景:在我的 ASP.NET Core 1.1 应用程序中,我使用 EPPlus.Core 将数据动态导出到 Excel 并在客户端下载/保存.作为初学者,我试图模仿以下示例(取自 here ),但 VS2015 无法识别此代码的最后 3 行

public void ExportListUsingEPPlus()
{
var data = new[]{
new{ Name="Ram", Email="ram@techbrij.com", Phone="111-222-3333" },
new{ Name="Shyam", Email="shyam@techbrij.com", Phone="159-222-1596" },
new{ Name="Mohan", Email="mohan@techbrij.com", Phone="456-222-4569" },
new{ Name="Sohan", Email="sohan@techbrij.com", Phone="789-456-3333" },
new{ Name="Karan", Email="karan@techbrij.com", Phone="111-222-1234" },
new{ Name="Brij", Email="brij@techbrij.com", Phone="111-222-3333" }
};

ExcelPackage excel = new ExcelPackage();
var workSheet = excel.Workbook.Worksheets.Add("Sheet1");
workSheet.Cells[1, 1].LoadFromCollection(data, true);
using (var memoryStream = new MemoryStream())
{
Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
Response.Headers.Add("content-disposition", "attachment; filename=Contact.xlsx");
excel.SaveAs(memoryStream);
memoryStream.WriteTo(Response.OutputStream);
Response.Flush();
Response.End();
}
}

最佳答案

您可以在 Controller 操作中返回 FileStreamResult 之一。

它返回指定 fileStream 中的文件,其中指定的 contentType 作为 Content-Type,指定的 fileDownloadName 作为建议的文件名。

public virtual FileStreamResult File(Stream fileStream, string contentType, string fileDownloadName)

编辑:

示例操作方法-

var data = new[]{
new{ Name="Ram", Email="ram@techbrij.com", Phone="111-222-3333" },
new{ Name="Shyam", Email="shyam@techbrij.com", Phone="159-222-1596" },
new{ Name="Mohan", Email="mohan@techbrij.com", Phone="456-222-4569" },
new{ Name="Sohan", Email="sohan@techbrij.com", Phone="789-456-3333" },
new{ Name="Karan", Email="karan@techbrij.com", Phone="111-222-1234" },
new{ Name="Brij", Email="brij@techbrij.com", Phone="111-222-3333" }
};

ExcelPackage excel = new ExcelPackage();
var workSheet = excel.Workbook.Worksheets.Add("Sheet1");
workSheet.Cells[1, 1].LoadFromCollection(data, true);

//var memoryStream = new MemoryStream(excel.GetAsByteArray());

//Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
//Response.Headers.Add("content-disposition", "attachment; filename=Contact.xlsx");
//excel.SaveAs(memoryStream);
//memoryStream.WriteTo(Response.OutputStream);
//Response.Flush();
//Response.End();

return File(excel.GetAsByteArray(), "application/vnd.ms-excel", "Contact.xlsx");

生成的Excel截图-

enter image description here

关于c# - 即时创建 Excel 文件并将其下载/保存在客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44345788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com