有没有办法在ASP.Net页面中为新生成的OpenXML(docx)文件提供下载而不将其保存在临时文件夹中?
在MSDN上我只找到了使用临时文件的教程,但我考虑过使用WordprocessingDocument.MainDocumentPart.GetStream()
并直接写出流。
答案 0 :(得分:12)
创建文档时,使用MemoryStream
作为后备存储。然后正常创建并关闭文档,并将内存流的内容提供给客户端。
using(var stream = new MemoryStream())
{
using(var doc = WordprocessingDocument.Create(stream, WordprocessingDocumentType.Document, true)
{
...
}
stream.Position = 0;
stream.CopyTo(Response.OutputStream);
}
不要只抓住MainDocumentPart
,因为顾名思义,这只是文档包的一部分,而不是所有内容。
您还需要为内容类型和处置设置响应标头。
答案 1 :(得分:1)
Stream.CopyTo()可能会帮助你。
WordprocessingDocument.MainDocumentPart.GetStream().CopyTo(Response.OutputStream);
您仍然需要为MIME类型,内容处置等设置标题。