首页 > 编程 > C# > 正文

C#中把多个Word文档合并为一个文档的方法

2023-05-18 12:33:10
字体:
来源:转载
供稿:网友

有时我们需要将多个word文档合并为一个文档,下面将给出具体的操作方法和源代码。

对WORD文档的合并方式分两种形式:复制合并和插入合并,即将多个文档按照先后顺序合并到另一个文档中。具体源代码如下:

using System;

using System.Collections.Generic;

  using System.Text;

  using Microsoft.Office.Interop.Word;

  using System.Reflection;

  using System.IO;

  using System.Diagnostics;

  namespace Eipsoft.Common

  {

  /// <summary>

  /// Word文档合并类

  /// </summary>

  public class WordDocumentMerger

  {

  private ApplicationClass objApp = null;

  private Document objDocLast = null;

  private Document objDocBeforeLast = null;

  public WordDocumentMerger()

  {

  objApp = new ApplicationClass();

  }

  #region 打开文件

  private void Open(string tempDoc)

  {

  object objTempDoc = tempDoc;

  object objMissing = System.Reflection.Missing.Value;

  objDocLast = objApp.Documents.Open(

   ref objTempDoc,    //FileName

    ref objMissing,   //ConfirmVersions

    ref objMissing,   //ReadOnly

    ref objMissing,   //AddToRecentFiles

    ref objMissing,   //PasswordDocument

    ref objMissing,   //PasswordTemplate

    ref objMissing,   //Revert

    ref objMissing,   //WritePasswordDocument

    ref objMissing,   //WritePasswordTemplate

    ref objMissing,   //Format

    ref objMissing,   //Enconding

    ref objMissing,   //Visible

    ref objMissing,   //OpenAndRepair

    ref objMissing,  //DocumentDirection

    ref objMissing,  //NoEncodingDialog

    ref objMissing   //XMLTransform

    );

    objDocLast.Activate();

    }

    #endregion

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表