简体   繁体   中英

Merging word-documents using DocumentFormat.OpenXml(c#)

Is there any way to make merging 2 word-documents using library DocumentFormat.OpenXML , considering the mode of MS Word "Track Changes". Or maybe it's possible using another library?

You can use standart api of MS Word

    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");

EDIT

And read this Merging-Word-Documents

EDIT2

so try this

    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);
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM