Eni*_*ate 3 .net c# excel memorystream export-to-excel
嗨,我正在使用 closedxml DLL 导出到 excel 我有如下静态方法
public static void WriteToExcel(string fileName, List<CP> pages)
{
var wb = new XLWorkbook();
byte[] file;
var ws = wb.Worksheets.Add("CPs");
WriteCostHeader(ws);
////write all the header columns
//for (int i = 0; i < pages.Count; i++)
int iRow = 2;
foreach(var page in pages)
{
WriteCostPage(ws, page, iRow++);
WriteCostItemHead(ws, iRow++);
foreach(var item in page.Items)
{
WriteCostItem(ws, item, iRow++);
}
iRow++;
}
wb.SaveAs(fileName);
}
Run Code Online (Sandbox Code Playgroud)
我在下面这样的方法中调用上面的函数
public static List<CP> Init()
{
//binding items to to list
}
static void Main(string[] args)
{
byte[] file;
file = ExcelProvider.WriteToExcel("D:\\Temp\\Test1.xls", Init());
//Console.WriteLine("done");
//Console.ReadLine();
}
public byte[] CreatePackage()
{
string fileName = string.Format("{0}.xlsx", "Generated");
byte[] excelFile;
// getting error here cannot convert void to byte[]
excelFile = ExcelProvider.WriteToExcel(fileName, Init());
}
Run Code Online (Sandbox Code Playgroud)
但我需要以字节为单位获得结果 excel 表,我需要稍后将它存储在内存流中,我可以用于进一步的目的..
但我不确定如何以字节格式获取创建的 excel 文件...
任何人都可以对此提出任何想法或解决方案......非常感谢......
Ada*_*rey 11
关闭的 XML 工作簿将保存到流中。您可以使用内存流。然后调用MemoryStream.ToArray()以获取其字节。所以...
var wb = new XLWorkbook();
//...
var workbookBytes = new byte[0];
using (var ms = new MemoryStream())
{
wb.SaveAs(ms);
workbookBytes = ms.ToArray();
}
Run Code Online (Sandbox Code Playgroud)
请这样做:-
//Open the File into file stream
FileStream fileStream = new FileStream(Server.MapPath(fileName), FileMode.Open, FileAccess.Read, FileShare.Read);
//Create and populate a memorystream with the contents of the
MemoryStream mstream = StreamToMemory(fileStream);
// delete the file when it is been added to memory stream
File.Delete(Server.MapPath(fileName));
//Convert the memorystream to an array of bytes.
byte[] byteArray = mstream.ToArray();
//Clean up the memory stream
mstream.Flush();
mstream.Close();
// Clear all content output from the buffer stream
Response.Clear();
// Add a HTTP header to the output stream that specifies the default filename
// for the browser's download dialog
Response.AddHeader("Content-Disposition", "attachment; filename=QatargasTimesheet-" + ((DateTime)rdDate.SelectedDate).ToString("MMM yyyy") + ".xls");
// Add a HTTP header to the output stream that contains the
// content length(File Size). This lets the browser know how much data is being transfered
Response.AddHeader("Content-Length", byteArray.Length.ToString());
// Set the HTTP MIME type of the output stream
Response.ContentType = "application/octet-stream";
// Write the data out to the client.
Response.BinaryWrite(byteArray);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
12865 次 |
| 最近记录: |