使用 DocumentFormat.OpenXml(c#) 合并 word 文档

本文关键字:合并 word 文档 DocumentFormat OpenXml 使用 | 更新日期: 2023-09-27 18:32:36

考虑到MS Word的"跟踪更改"模式,有没有办法使用库DocumentFormat.OpenXML合并2个word文档。 或者也许可以使用另一个库?

使用 DocumentFormat.OpenXml(c#) 合并 word 文档

您可以使用MS Word的标准API

    Microsoft.Office.Interop.Word.Document worddoc;
    Microsoft.Office.Interop.Word.Application wordApp;
    Microsoft.Office.Interop.Word.Range _range;              
    object file = "1.doc";
    wordApp = new Microsoft.Office.Interop.Word.Application();
    worddoc = wordApp.Documents.Open(ref file); 
    _range = worddoc.Content;
    Microsoft.Office.Interop.Word.Range rng = _range; 
    rng.Start = rng.End;
    rng.InsertFile("2.doc");

编辑

并阅读此合并单词文档

编辑2

所以试试这个

    using DocumentFormat.OpenXml.Packaging;
    using DocumentFormat.OpenXml.Wordprocessing;
    ....
    public byte[] OpenAndCombine(List<string> FileNames)
    {
        List<byte[]> documents = new List<byte[]>();
        foreach (string _FileName in FileNames)               
                documents.Add(File.ReadAllBytes(_FileName));
        MemoryStream mainStream = new MemoryStream();
        mainStream.Write(documents[0], 0, documents[0].Length);
        mainStream.Position = 0;
        int pointer = 1;
        byte[] ret;
            using (WordprocessingDocument mainDocument = WordprocessingDocument.Open(mainStream, true))
            {
                XElement newBody = XElement.Parse(mainDocument.MainDocumentPart.Document.Body.OuterXml);
                for (pointer = 1; pointer < documents.Count; pointer++)
                {
                    WordprocessingDocument tempDocument = WordprocessingDocument.Open(new MemoryStream(documents[pointer]), true);
                    XElement tempBody = XElement.Parse(tempDocument.MainDocumentPart.Document.Body.OuterXml);
                    newBody.Add(tempBody);
                    mainDocument.MainDocumentPart.Document.Body = new Body(newBody.ToString());
                    mainDocument.MainDocumentPart.Document.Save();
                    mainDocument.Package.Flush();
                }
            }
            ret = mainStream.ToArray();
            mainStream.Close();
            mainStream.Dispose();
        return (ret);
    }