C#合并多个Word文档(微软官方免费openxml接口)
【代码】C#合并多个Word文档(微软官方免费openxml接口)
·
g
/// <summary>
/// 合并多个word文档(合并到第一文件)
/// </summary>
/// <param name="as_word_paths">word文档完整路径</param>
/// <param name="breakNewPage">true(默认值),合并下一个文档前,自动换页</param>
/// <returns>无</returns>
public void MergeWordFiles(string[] as_word_paths, bool breakNewPage = true)
{
var ls_first_word = as_word_paths.Length > 0 ? as_word_paths[0] : "";
if (ls_first_word.fn_isempty())
{
return;
}
using (WordprocessingDocument doc = WordprocessingDocument.Open(ls_first_word, true))
{
var mainPart = doc.MainDocumentPart;
for (var i = 1; i < as_word_paths.Length; i++)
{
var altChunkId = "cid_" + Guid.NewGuid().ToString().Replace("-", "");
var chunk = mainPart.AddAlternativeFormatImportPart(AlternativeFormatImportPartType.WordprocessingML, altChunkId);
//mainPart.Document.Save();
using (FileStream fileStream = File.Open(as_word_paths[i], FileMode.Open))
{
chunk.FeedData(fileStream);
}
var altChunk = new DocumentFormat.OpenXml.Wordprocessing.AltChunk();
altChunk.Id = altChunkId;
//添加下一页(下一个文档合并此页)
if (breakNewPage)
{
Paragraph newPage = new Paragraph(new Run
(new Break() { Type = BreakValues.Page }
));
mainPart.Document.Append(newPage, altChunk);
}
else
{
mainPart.Document.Append(altChunk);
}
//mainPart.Document.Body.Append(altChunk);
}
//mainPart.Document.Body.InsertAfter(altChunk, mainPart.Document.Body.Elements<DocumentFormat.OpenXml.Wordprocessing.Paragraph>().Last());
mainPart.Document.Save();
}
}

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)