public static void Word_FillModel(string modelPath, string savePath, Dictionary<string, string> keyValues)
{
System.IO.FileStream fs = new System.IO.FileStream(modelPath, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.ReadWrite);
NPOI.XWPF.UserModel.XWPFDocument docx = new NPOI.XWPF.UserModel.XWPFDocument(fs);//打开07(.docx)以上的版本的文档
//遍历word中的段落
foreach (var para in docx.Paragraphs)
{
foreach (var be in para.Body.BodyElements)
{
if (be.GetType() == typeof(NPOI.XWPF.UserModel.XWPFParagraph))
{
var be1 = (NPOI.XWPF.UserModel.XWPFParagraph)be;
foreach (var kv in keyValues)
{
if (be1.ParagraphText.Contains(kv.Key))
{
be1.ReplaceText(kv.Key, kv.Value);
}
}
}
}
}
//遍历表格
foreach (var table in docx.Tables)
{
foreach (var row in table.Rows)
{
foreach (var cell in row.GetTableCells())
{
foreach (var para in cell.Paragraphs)
{
foreach (var be in para.Body.BodyElements)
{
if (be.GetType() == typeof(NPOI.XWPF.UserModel.XWPFParagraph))
{
var be1 = (NPOI.XWPF.UserModel.XWPFParagraph)be;
foreach (var kv in keyValues)
{
if (be1.ParagraphText.Contains(kv.Key))
{
be1.ReplaceText(kv.Key, kv.Value);
}
}
}
}
}
}
}
}
System.IO.FileStream output = new System.IO.FileStream(savePath, System.IO.FileMode.Create);
docx.Write(output);
fs.Close();
fs.Dispose();
output.Close();
output.Dispose();
}
相关文章
- 10-29word2vec原理(二) 基于Hierarchical Softmax的模型
- 10-29Word恢复文本转换器-修复损坏的WORD文件
- 10-29iwms后台编辑器无法粘贴word格式的解决方法
- 10-29识别CAJ文件转换到Word中的简单方法
- 10-29caj格式的文件如何转换成Word文档?
- 10-29word插入公式不自动斜体的解决办法
- 10-29Mac pro20版本的Endnote20关联word经历
- 10-29在word中插入endnote文献出现“无效的类字符串”
- 10-29LaTeX中和Word中打公式的区别,求和符号
- 10-29NLP中对word level,sentence level,document level的理解