メモリ ストリームから出力ストリームにデータ テーブルを書き込もうとする Web ページは、Excel ファイルをユーザーに配信しようとして System.OutOfMemoryException をスローします。Excel でファイルを保存するためにクローズド XML を使用しています。データテーブルは約 40,000 行、150 列で、ほとんどが小数で、エクスポートされるファイルは通常 10MB 以上です。Excel へのエクスポート中に大規模なデータ セットをハッキングするための推奨されるトリックは何ですか?
これは、私が使用しているクローズド XML のコードですhttp://closedxml.codeplex.com/wikipage?title=How%20do%20I%20deliver%20an%20Excel%20file%20in%20ASP.NET%3f&referringTitle=Documentation
public HttpResponseMessage Get()
{
// Create the workbook
var workbook = new XLWorkbook();
Datatable dt = getDataTable();
workbook.Worksheets.Add(dt);
// Prepare the response
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
var memoryStream = new MemoryStream(); // If I put this in a 'using' construct, I never get the response back in a browser.
workbook.SaveAs(memoryStream);
memoryStream.Seek(0, SeekOrigin.Begin); // Seem to have to manually rewind stream before applying it to the content.
response.Content = new StreamContent(memoryStream);
response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment") { FileName = "HelloWorld.xlsx" };
return response;
}