踏踏实实学编程 基于C#操作Word文档中的Bookmark

47 篇文章 0 订阅
16 篇文章 0 订阅

http://www.cnblogs.com/jin256/archive/2012/02/17/2355433.html


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.Office.Interop.Word;
using System.Data;

namespace WebApplication1
{
    public static class FunctionHelp
    {
        #region Parameters
        private static Microsoft.Office.Interop.Word._Document MyDoc;
        private static Microsoft.Office.Interop.Word._Application MyWord;
        private static object Nothing = System.Reflection.Missing.Value;
        #endregion

        #region Share Methods

        private static Microsoft.Office.Interop.Word._Document OpenWord(Microsoft.Office.Interop.Word._Application wordApp,string templatePath)
        {
            object Visible = false;
            object newTemp = false;
            wordApp = new Microsoft.Office.Interop.Word.Application();
            object templateFile = templatePath + "\\New.doc";
            try
            {
                return wordApp.Documents.Open(ref templateFile, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,
                                            ref Nothing, ref Nothing, ref Visible, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
            }
            catch
            {
                return null;
            }
        }

        private static bool SaveWord(Microsoft.Office.Interop.Word._Document word,string savePath)
        {
            object Visible = false;
            object filename = savePath + "\\King.doc";
            try
            {
                word.SaveAs(filename, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,
                                ref Nothing, ref Nothing, ref Nothing, ref Visible, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
                CloseWord(MyDoc,MyWord);
                return true;
            }
            catch (Exception ex)
            {
                CloseWord(MyDoc, MyWord);
                return false;
            }
        }

        private static void CloseWord(Microsoft.Office.Interop.Word._Document word,Microsoft.Office.Interop.Word._Application wordApp)
        {
            object missingValue = Type.Missing;
            object doNotSaveChanges = WdSaveOptions.wdDoNotSaveChanges;
            if (word != null)
                word.Close(ref doNotSaveChanges, ref missingValue, ref missingValue);
            if (wordApp != null)
                wordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
        }

        #endregion

        #region Static Methods
        /// <summary>
        /// 根据Word文档内的BookMark添加数据
        /// </summary>
        /// <param name="dtSource"></param>
        /// <param name="templatePath"></param>
        /// <param name="savePath"></param>
        /// <returns>是否保存成功</returns>
        public static bool ExportWord(DataTable dtSource, string templatePath, string savePath)
        {
            MyDoc = OpenWord(MyWord, templatePath);
            if (MyDoc != null)
            {
                foreach (Microsoft.Office.Interop.Word.Bookmark bm in MyDoc.Bookmarks)
                {
                    bm.Select();
                    switch (bm.Name)
                    {
                        case "书签名":
                            bm.Range.Text = 根据dtSource给书签赋值
                            break;
                        ...
                    }
                }
            }
            return SaveWord(MyDoc, savePath);
        }

        #endregion

        #region Public Methods
        #endregion
    }
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值