asp.net操作Word實現批量替換_實用技巧

來源:互聯網
上載者:User

首先引入Microsoft.Office.Interop.Word組件,該組件在安裝完office後在COM中出現。

代碼如下

using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Text;namespace TextReplace{ public class WordOperate : IDisposable {  private Microsoft.Office.Interop.Word._Application _app;  private Microsoft.Office.Interop.Word._Document _doc;  object _nullobj = System.Reflection.Missing.Value;  /// <summary>  /// 關閉Word進程  /// </summary>  public void KillWinword()  {   var p = Process.GetProcessesByName("WINWORD");   if (p.Any()) p[0].Kill();  }  /// <summary>  /// 開啟word文檔  /// </summary>  /// <param name="filePath"></param>  public void Open(string filePath)  {   _app = new Microsoft.Office.Interop.Word.ApplicationClass();   object file = filePath;   _doc = _app.Documents.Open(     ref file, ref _nullobj, ref _nullobj,     ref _nullobj, ref _nullobj, ref _nullobj,     ref _nullobj, ref _nullobj, ref _nullobj,     ref _nullobj, ref _nullobj, ref _nullobj,     ref _nullobj, ref _nullobj, ref _nullobj, ref _nullobj);  }  /// <summary>  /// 替換word中的文字  /// </summary>  /// <param name="strOld">尋找的文字</param>  /// <param name="strNew">替換的文字</param>  public void Replace(string strOld, string strNew)  {   _app.Selection.Find.ClearFormatting();   _app.Selection.Find.Replacement.ClearFormatting();   _app.Selection.Find.Text = strOld;   _app.Selection.Find.Replacement.Text = strNew;   object objReplace = Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll;   _app.Selection.Find.Execute(ref _nullobj, ref _nullobj, ref _nullobj,          ref _nullobj, ref _nullobj, ref _nullobj,          ref _nullobj, ref _nullobj, ref _nullobj,          ref _nullobj, ref objReplace, ref _nullobj,          ref _nullobj, ref _nullobj, ref _nullobj);  }  /// <summary>  /// 儲存  /// </summary>  public void Save()  {   _doc.Save();  }  /// <summary>  /// 退出  /// </summary>  public void Dispose()  {   _doc.Close(ref _nullobj, ref _nullobj, ref _nullobj);   _app.Quit(ref _nullobj, ref _nullobj, ref _nullobj);  } }}

以上就是關於asp.net如何操作Word實現批量替換的全部代碼,希望對大家的學習有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.