当前位置: 移动技术网 > IT编程>开发语言>c# > C#根据Word模版生成Word文件

C#根据Word模版生成Word文件

2019年07月18日  | 移动技术网IT编程  | 我要评论
本文实例为大家分享了c#根据word模版生成word文的具体代码,供大家参考,具体内容如下 1、指定的word模版 2、生成word类 添加com microso

本文实例为大家分享了c#根据word模版生成word文的具体代码,供大家参考,具体内容如下

1、指定的word模版

2、生成word类

添加com microsoft word 11.0 object library 引用

using system;
using system.collections.generic;
using system.data;
using system.windows.forms;
using word = microsoft.office.interop.word;
using system.io;
 
namespace headfree.defui
{
  public class wordutility
  {
    private object tempfile = null;
    private object savefile = null;
    private static word._document wdoc = null; //word文档
    private static word._application wapp = null; //word进程
    private object missing = system.reflection.missing.value;
 
    public wordutility(string tempfile, string savefile)
    {
      this.tempfile = path.combine(application.startuppath, @tempfile);
      this.savefile = path.combine(application.startuppath, @savefile);
    }
 
    /// <summary>
    /// 模版包含头部信息和表格,表格重复使用
    /// </summary>
    /// <param name="dt">重复表格的数据</param>
    /// <param name="exppaircolumn">word中要替换的表达式和表格字段的对应关系</param>
    /// <param name="simpleexppairvalue">简单的非重复型数据</param>
    public bool generateword(datatable dt, dictionary<string, string> exppaircolumn, dictionary<string, string> simpleexppairvalue)
    {
      if (!file.exists(tempfile.tostring()))
      {
        messagebox.show(string.format("{0}模版文件不存在,请先设置模版文件。", tempfile.tostring()));
        return false;
      }
      try
      {
        wapp = new word.application();
 
        wapp.visible = false;
 
        wdoc = wapp.documents.add(ref tempfile, ref missing, ref missing, ref missing);
 
        wdoc.activate();// 当前文档置前
 
        bool isgenerate = false;
 
        if (simpleexppairvalue != null && simpleexppairvalue.count > 0)
          isgenerate = replaceallrang(simpleexppairvalue);
 
        // 表格有重复
        if (dt != null && dt.rows.count > 0 && exppaircolumn != null && exppaircolumn.count > 0)
          isgenerate = generatetable(dt, exppaircolumn);
 
        if (isgenerate)
          wdoc.saveas(ref savefile, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing,
            ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);
 
        disposeword();
 
        return true;
      }
      catch (exception ex)
      {
        messagebox.show("生成失败" + ex.message);
        return false;
      }
    }
 
    /// <summary>
    /// 单个替换 模版没有重复使用的表格
    /// </summary>
    /// <param name="dc">要替换的</param>
    public bool generateword(dictionary<string, string> dc)
    {
      return generateword(null, null, dc);
    }
 
 
    private bool generatetable(datatable dt, dictionary<string, string> exppaircolumn)
    {
      try
      {
        int tablenums = dt.rows.count;
 
        word.table tb = wdoc.tables[1];
 
        tb.range.copy();
 
        dictionary<string, object> dc = new dictionary<string, object>();
        for (int i = 0; i < tablenums; i++)
        {
          dc.clear();
 
          if (i == 0)
          {
            foreach (string key in exppaircolumn.keys)
            {
              string column = exppaircolumn[key];
              object value = null;
              value = dt.rows[i][column];
              dc.add(key, value);
            }
 
            replacetablerang(wdoc.tables[1], dc);
            continue;
          }
 
          wdoc.paragraphs.last.range.paste();
 
          foreach (string key in exppaircolumn.keys)
          {
            string column = exppaircolumn[key];
            object value = null;
            value = dt.rows[i][column];
            dc.add(key, value);
          }
 
          replacetablerang(wdoc.tables[1], dc);
        }
 
 
        return true;
      }
      catch (exception ex)
      {
        disposeword();
        messagebox.show("生成模版里的表格失败。" + ex.message);
        return false;
      }
    }
 
    private bool replacetablerang(word.table table, dictionary<string, object> dc)
    {
      try
      {
        object replacearea = word.wdreplace.wdreplaceall;
 
        foreach (string item in dc.keys)
        {
          object replacekey = item;
          object replacevalue = dc[item];
          table.range.find.execute(ref replacekey, ref missing, ref missing, ref missing,
           ref missing, ref missing, ref missing, ref missing, ref missing,
           ref replacevalue, ref replacearea, ref missing, ref missing, ref missing,
           ref missing);
        }
        return true;
      }
      catch (exception ex)
      {
        disposeword();
        messagebox.show(string.format("{0}模版中没有找到指定的要替换的表达式。{1}", tempfile, ex.message));
        return false;
      }
    }
 
    private bool replaceallrang(dictionary<string, string> dc)
    {
      try
      {
        object replacearea = word.wdreplace.wdreplaceall;
 
        foreach (string item in dc.keys)
        {
          object replacekey = item;
          object replacevalue = dc[item];
          wapp.selection.find.execute(ref replacekey, ref missing, ref missing, ref missing,
           ref missing, ref missing, ref missing, ref missing, ref missing,
           ref replacevalue, ref replacearea, ref missing, ref missing, ref missing,
           ref missing);
        }
        return true;
      }
      catch (exception ex)
      {
        messagebox.show(string.format("{0}模版中没有找到指定的要替换的表达式。{1}", tempfile, ex.message));
        return false;
      }
    }
 
    private void disposeword()
    {
      object saveoption = word.wdsaveoptions.wdsavechanges;
 
      wdoc.close(ref saveoption, ref missing, ref missing);
 
      saveoption = word.wdsaveoptions.wddonotsavechanges;
 
      wapp.quit(ref saveoption, ref missing, ref missing); //关闭word进程
    }
  }
}

3、效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如您对本文有疑问或者有任何想说的,请 点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网