如何将一个word文档的内容复制到另一个word文档中?

时间:2016-09-08 03:22:14

标签: c#

我有一个带有文字和图像的文字文件。我想使用C#将word文档的内容复制到另一个word文档中。

感谢。

3 个答案:

答案 0 :(得分:0)

试试这个。它应该做的伎俩。 这会将所有内容从第一个文档复制到第二个文档。确保两个文件都存在。

using (WordprocessingDocument firstDocument = WordprocessingDocument.Open(@"E:\firstDocument.docx", false))
using (WordprocessingDocument secondDocument = WordprocessingDocument.Create(@"E:\secondDocument.docx", WordprocessingDocumentType.Document))
{
    foreach (var part in firstDocument.Parts)
    {
        secondDocument.AddPart(part.OpenXmlPart, part.RelationshipId);
    }
}

答案 1 :(得分:0)

下面的函数将向您展示如何打开 - 关闭并从word doc复制。

using MsWord = Microsoft.Office.Interop.Word;
private static void MsWordCopy()
    {
        var wordApp = new MsWord.Application();
        MsWord.Document documentFrom = null, documentTo = null;

        try
        {
            var fileNameFrom = @"C:\MyDocFile.docx";               

            wordApp.Visible = true;

            documentFrom = wordApp.Documents.Open(fileNameFrom, Type.Missing, true);
            MsWord.Range oRange = documentFrom.Content;
            oRange.Copy();

            var fileNameTo = @"C:\MyDocFile-Copy.docx";
            documentTo = wordApp.Documents.Add();
            documentTo.Content.PasteSpecial(DataType: MsWord.WdPasteOptions.wdKeepSourceFormatting);
            documentTo.SaveAs(fileNameTo);              
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }

        finally
        {
            if (documentFrom != null)
                documentFrom.Close(false);

            if (documentTo != null)
                documentTo.Close();

            if (wordApp != null)
                System.Runtime.InteropServices.Marshal.ReleaseComObject(wordApp);

            wordApp = null;
            documentFrom = null;
            documentTo = null;

            GC.Collect();
            GC.WaitForPendingFinalizers();
        }
    }

答案 2 :(得分:0)

尝试以下代码。这可能会对你有帮助。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Office.Interop.Word;
using System.Runtime.InteropServices;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var app = new Microsoft.Office.Interop.Word.Application();
            var sourceDoc =    app.Documents.Open(@"D:\test.docx");

            sourceDoc.ActiveWindow.Selection.WholeStory();
            sourceDoc.ActiveWindow.Selection.Copy();

            var newDocument = new Microsoft.Office.Interop.Word.Document();
            newDocument.ActiveWindow.Selection.Paste();
            newDocument.SaveAs(@"D:\test1.docx");

            sourceDoc.Close(false);
            newDocument.Close();

            app.Quit();

            Marshal.ReleaseComObject(app);
            Marshal.ReleaseComObject(sourceDoc);
            Marshal.ReleaseComObject(newDocument);
        }
    }
}
相关问题