我正在尝试在我创建并添加到我的 .net 核心项目中的 word 文档模板中查找和替换特定的单词/字符串。
我目前正在使用 NPOI 来做到这一点,但我似乎无法弄清楚,因为我的 C# 知识不是很好!
理论上我想阅读现成的 .docx 模板,然后替换我需要的内容,然后保存它。
我已经尝试了我能想到的所有方法,但仍然无法正常工作。
这是我留下的代码:
var docUrl = @"App_Data/Document_Template.docx";
using (FileStream file = new FileStream(docUrl, FileMode.Open, FileAccess.Read))
{
XWPFDocument doc = new XWPFDocument(file);
// get the document template using docUrl and replace string with another string.
doc.Write(file);
}
任何帮助都会很棒,因为我花了很多时间研究并尝试实现这一点,只是没有任何运气!
慕森卡
相关分类