サンプルハンドラを作成して、簡単なWord文書を生成します。
この文書はなりこんにちはOpen XMLでワード文書を作成する
テキストこれは私が使用するコード(C#.NET 3.5)で含まれ、
私が作成したWord文書を得たが、それには、テキスト、サイズが0ではありません。
どうすれば修正できますか?
(CopyToのは、.NET 4.0でのみ上利用可能であるので、私はCopyStreamメソッドを使用します。)
public class HandlerCreateDocx : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
using (MemoryStream mem = new MemoryStream())
{
// Create Document
using (WordprocessingDocument wordDocument =
WordprocessingDocument.Create(mem, WordprocessingDocumentType.Document, true))
{
// Add a main document part.
MainDocumentPart mainPart = wordDocument.AddMainDocumentPart();
// Create the document structure and add some text.
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
Paragraph para = body.AppendChild(new Paragraph());
Run run = para.AppendChild(new Run());
run.AppendChild(new Text("Hello world!"));
mainPart.Document.Save();
// Stream it down to the browser
context.Response.AppendHeader("Content-Disposition", "attachment;filename=HelloWorld.docx");
context.Response.ContentType = "application/vnd.ms-word.document";
CopyStream(mem, context.Response.OutputStream);
context.Response.End();
}
}
}
// Only useful before .NET 4
public void CopyStream(Stream input, Stream output)
{
byte[] buffer = new byte[16 * 1024]; // Fairly arbitrary size
int bytesRead;
while ((bytesRead = input.Read(buffer, 0, buffer.Length)) > 0)
{
output.Write(buffer, 0, bytesRead);
}
}
}
Open XML生産性ツールを使用してドキュメントをデバッグすることをお勧めします。また、Wordで文書を最初に作成し、文書を作成するコードを提供するツールを使用することも検討してください。 – juharr