gpt4 book ai didi

C# 使用 OpenXml 填充 word 模板

转载 作者:太空宇宙 更新时间:2023-11-03 15:42:55 25 4
gpt4 key购买 nike

我想创建一个基于带有内容控件的模板的新 Word 文档。

我需要填写那些内容控件(文本)。

我只找到了如何生成新的 Word 文档,但没有找到基于模板的方法。

你有任何链接或教程吗?

也许我使用 OpenXml 填充模板是错误的?

        // Create a Wordprocessing document. 
using (WordprocessingDocument myDoc =
WordprocessingDocument.Create("d:/dev/test.docx",
WordprocessingDocumentType.Document))
{
// Add a new main document part.
MainDocumentPart mainPart = myDoc.AddMainDocumentPart();
//Create Document tree for simple document.
mainPart.Document = new Document();
//Create Body (this element contains
//other elements that we want to include
Body body = new Body();
//Create paragraph
Paragraph paragraph = new Paragraph();
Run run_paragraph = new Run();
// we want to put that text into the output document
Text text_paragraph = new Text("Hello World!");
//Append elements appropriately.
run_paragraph.Append(text_paragraph);
paragraph.Append(run_paragraph);
body.Append(paragraph);
mainPart.Document.Append(body);
// Save changes to the main document part.
mainPart.Document.Save();
}

最佳答案

使用 OpenXML 是正确的方法,因为您无需安装 MS Word 即可操作文档——想想服务器场景。然而,它的学习曲线陡峭而乏味。以我的拙见,最好的方法是要求预算购买第 3 方工具包并专注于业务领域而不是 OpenXML 调整。

在您的示例中,您在 Word 中有一个模板并希望用数据更新(合并)它。我用 Docentric Toolkit 完成了这个对于我们的一些场景,它工作得很好。一旦了解了其工作原理的基础知识,您就可以快速创建解决方案。如果你被卡住了,DT 的人不会让你失望的。请参阅此链接 (http://www.codeproject.com/Articles/759408/Creating-Word-documents-in-Net-using-Docentric-Too) 了解如何使用它。默认情况下,它会创建 .docx,但您也可以获得固定的最终文档(pdf 或 xps)。

关于C# 使用 OpenXml 填充 word 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29488604/

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