当前位置:  编程技术>.net/c#/asp.net

C#实现通过模板自动创建Word文档的方法

    来源: 互联网  发布时间:2014-11-04

    本文导语:  本文实例讲述了C#实现通过模板自动创建Word文档的方法,是非常实用的技巧。分享给大家供大家参考。具体实现方法如下: 引言:前段时间有项目要用c#生成Word格式的计算报告,通过网络查找到很多内容,但是都很凌乱,于是...

本文实例讲述了C#实现通过模板自动创建Word文档的方法,是非常实用的技巧。分享给大家供大家参考。具体实现方法如下:

引言:前段时间有项目要用c#生成Word格式的计算报告,通过网络查找到很多内容,但是都很凌乱,于是自己决定将具体的步骤总结整理出来,以便于更好的交流和以后相似问题可以迅速的解决!

现通过具体的示例演示具体的步骤:
 
第一步,制作模板
 
1.新建一个文档,设置文档内容。
2.在相应位置插入书签;将鼠标定位到要插入书签的位置,点击“插入”>“书签”,弹出对话框,输入书签名,点击“添加”按钮。
3.保存模板,命名为“模板1.dot”或者“模板1.doc”

第二步,设置项目中的引用

1.右击“解决方案资源管理器”中的项目目录下的“引用”,选择“添加引用”,打开“添加引用”对话框
2.在“添加引用”对话框中,选择“COM”>“Microsoft Word 11.0 Object Library”,点击“确定”按钮
3.相同操作打开“添加引用”对话框中,选择“浏览”项,查找到”Microsoft.Office.Interop.Word.dll”文件,选中它,点击“确定”按钮
 
注意:此处要查找的“Microsoft.Office.Interop.Word.dll”版本必须为“11.*.*.*”,“*”代表数字

第三步,编码

这一步分成两个部分
第一部分,Report类的编码
这部分我已经封装好,为文件“Report.cs”,可以直接使用

具体实现代码如下:(代码中有比较详细的注释)

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Office.Interop.Word;
 
namespace MYNAMESPACE //这边需要换成自己的命名空间名
{
  classReport
  {
    private_ApplicationwordApp= null;
    private_DocumentwordDoc= null;
    public_ApplicationApplication
    {
      get
      {
        return wordApp;
      }
      set
      {
        wordApp = value;
      }
    }
    public_DocumentDocument
    {
      get
      {
        return wordDoc;
      }
      set
      {
        wordDoc = value;
      }
    }
 
    //通过模板创建新文档
    publicvoidCreateNewDocument(stringfilePath)
    {
      killWinWordProcess();
      wordApp= new ApplicationClass();
      wordApp.DisplayAlerts =WdAlertLevel.wdAlertsNone;
      wordApp.Visible =false;
      objectmissing =System.Reflection.Missing.Value;
      objecttemplateName =filePath;
      wordDoc= wordApp.Documents.Open(reftemplateName, refmissing,
        ref missing, ref missing,ref missing, ref missing, refmissing,
        ref missing, ref missing,ref missing, ref missing, refmissing,
        ref missing, ref missing,ref missing, ref missing);
    }
 
    //保存新文件
    publicvoidSaveDocument(stringfilePath)
    {
      objectfileName =filePath;
      objectformat =WdSaveFormat.wdFormatDocument;//保存格式
      objectmiss =System.Reflection.Missing.Value;
      wordDoc.SaveAs(reffileName, ref format, ref miss,
        ref miss, ref miss,ref miss, ref miss,
        ref miss, ref miss,ref miss, ref miss,
        ref miss, ref miss,ref miss, ref miss,
        ref miss);
      //关闭wordDoc,wordApp对象
      objectSaveChanges =WdSaveOptions.wdSaveChanges;
      objectOriginalFormat =WdOriginalFormat.wdOriginalDocumentFormat;
      objectRouteDocument =false;
      wordDoc.Close(refSaveChanges, refOriginalFormat, refRouteDocument);
      wordApp.Quit(refSaveChanges, refOriginalFormat, refRouteDocument);
    }
 
    //在书签处插入值
    publicboolInsertValue(stringbookmark, stringvalue)
    {
      objectbkObj =bookmark;
      if(wordApp.ActiveDocument.Bookmarks.Exists(bookmark))
      {
        wordApp.ActiveDocument.Bookmarks.get_Item(refbkObj).Select();
        wordApp.Selection.TypeText(value);
        return true;
      }
      returnfalse;
    }
 
    //插入表格,bookmark书签
    publicTableInsertTable(stringbookmark, int rows, int columns,float width)
    {
      objectmiss =System.Reflection.Missing.Value;
      objectoStart =bookmark;
      Rangerange =wordDoc.Bookmarks.get_Item(refoStart).Range;//表格插入位置
      TablenewTable =wordDoc.Tables.Add(range,rows, columns, ref miss, refmiss);
      //设置表的格式
      newTable.Borders.Enable =1; //允许有边框,默认没有边框(为0时报错,1为实线边框,2、3为虚线边框,以后的数字没试过)
      newTable.Borders.OutsideLineWidth=WdLineWidth.wdLineWidth050pt;//边框宽度
      if(width != 0)
      {
        newTable.PreferredWidth=width;//表格宽度
      }
      newTable.AllowPageBreaks =false;
      returnnewTable;
    }
 
    //合并单元格 表名,开始行号,开始列号,结束行号,结束列号
    publicvoidMergeCell(Microsoft.Office.Interop.Word.Tabletable, int row1, int column1,int row2, int column2)
    {
      table.Cell(row1,column1).Merge(table.Cell(row2,column2));
    }
 
    //设置表格内容对齐方式Align水平方向,Vertical垂直方向(左对齐,居中对齐,右对齐分别对应Align和Vertical的值为-1,0,1)
    publicvoidSetParagraph_Table(Microsoft.Office.Interop.Word.Tabletable, int Align, int Vertical)
    {
      switch(Align)
      {
        case -1:table.Range.ParagraphFormat.Alignment=WdParagraphAlignment.wdAlignParagraphLeft;break;//左对齐
        case 0: table.Range.ParagraphFormat.Alignment=WdParagraphAlignment.wdAlignParagraphCenter;break;//水平居中
        case 1: table.Range.ParagraphFormat.Alignment=WdParagraphAlignment.wdAlignParagraphRight;break;//右对齐
      }
      switch(Vertical)
      {
        case -1: table.Range.Cells.VerticalAlignment=WdCellVerticalAlignment.wdCellAlignVerticalTop;break;//顶端对齐
        case 0: table.Range.Cells.VerticalAlignment=WdCellVerticalAlignment.wdCellAlignVerticalCenter;break;//垂直居中
        case 1: table.Range.Cells.VerticalAlignment=WdCellVerticalAlignment.wdCellAlignVerticalBottom;break;//底端对齐
      }
    }
 
    //设置表格字体
    publicvoidSetFont_Table(Microsoft.Office.Interop.Word.Tabletable, string fontName, double size)
    {
      if(size != 0)
      {
        table.Range.Font.Size =Convert.ToSingle(size);
      }
      if(fontName !="")
      {
        table.Range.Font.Name =fontName;
      }
    }
 
    //是否使用边框,n表格的序号,use是或否
    publicvoidUseBorder(int n,bool use)
    {
      if(use)
      {
        wordDoc.Content.Tables[n].Borders.Enable =1; //允许有边框,默认没有边框(为0时无边框,1为实线边框,2、3为虚线边框,以后的数字没试过)
      }
      else
      {
        wordDoc.Content.Tables[n].Borders.Enable =2; //允许有边框,默认没有边框(为0时无边框,1为实线边框,2、3为虚线边框,以后的数字没试过)
      }
    }
 
    //给表格插入一行,n表格的序号从1开始记
    publicvoidAddRow(int n)
    {
      objectmiss =System.Reflection.Missing.Value;
      wordDoc.Content.Tables[n].Rows.Add(refmiss);
    }
 
    //给表格添加一行
    publicvoidAddRow(Microsoft.Office.Interop.Word.Tabletable)
    {
      objectmiss =System.Reflection.Missing.Value;
      table.Rows.Add(refmiss);
    }
 
    //给表格插入rows行,n为表格的序号
    publicvoidAddRow(int n, int rows)
    {
      objectmiss =System.Reflection.Missing.Value;
      Microsoft.Office.Interop.Word.Tabletable = wordDoc.Content.Tables[n];
      for(inti = 0; i < rows; i++)
      {
        table.Rows.Add(refmiss);
      }
    }
 
    //给表格中单元格插入元素,table所在表格,row行号,column列号,value插入的元素
    publicvoidInsertCell(Microsoft.Office.Interop.Word.Tabletable, int row, int column,string value)
    {
      table.Cell(row,column).Range.Text =value;
    }
 
    //给表格中单元格插入元素,n表格的序号从1开始记,row行号,column列号,value插入的元素
    publicvoidInsertCell(int n, int row,int column, string value)
    {
      wordDoc.Content.Tables[n].Cell(row,column).Range.Text =value;
    }
 
    //给表格插入一行数据,n为表格的序号,row行号,columns列数,values插入的值
    publicvoidInsertCell(int n, int row,int columns, string[] values)
    {
      Microsoft.Office.Interop.Word.Tabletable = wordDoc.Content.Tables[n];
      for(inti = 0; i < columns; i++)
      {
        table.Cell(row,i + 1).Range.Text =values[i];
      }
    }
 
    //插入图片
    publicvoidInsertPicture(stringbookmark, stringpicturePath, floatwidth, float hight)
    {
      object miss = System.Reflection.Missing.Value;
      objectoStart =bookmark;
      ObjectlinkToFile =false;    //图片是否为外部链接
      ObjectsaveWithDocument =true; //图片是否随文档一起保存
      objectrange =wordDoc.Bookmarks.get_Item(refoStart).Range;//图片插入位置
      wordDoc.InlineShapes.AddPicture(picturePath,ref linkToFile, ref saveWithDocument, refrange);
      wordDoc.Application.ActiveDocument.InlineShapes[1].Width=width; //设置图片宽度
      wordDoc.Application.ActiveDocument.InlineShapes[1].Height=hight; //设置图片高度
    }
 
    //插入一段文字,text为文字内容
    publicvoidInsertText(stringbookmark, stringtext)
    {
      objectoStart =bookmark;
      objectrange =wordDoc.Bookmarks.get_Item(refoStart).Range;
      Paragraphwp =wordDoc.Content.Paragraphs.Add(refrange);
      wp.Format.SpaceBefore= 6;
      wp.Range.Text =text;
      wp.Format.SpaceAfter =24;
      wp.Range.InsertParagraphAfter();
      wordDoc.Paragraphs.Last.Range.Text ="n";
    }
 
    //杀掉winword.exe进程
    publicvoidkillWinWordProcess()
    {
      System.Diagnostics.Process[]processes=System.Diagnostics.Process.GetProcessesByName("WINWORD");
      foreach (System.Diagnostics.Processprocess in processes)
      {
        bool b = process.MainWindowTitle=="";
        if (process.MainWindowTitle =="")
        {
          process.Kill();
        }
      }
    }
  }
}

第二部分,具体生成文档的编码

代码见下文:
 
1.首先需要载入模板
Report report =new Report();
report.CreateNewDocument(TemPath); //模板路径
 
2.插入一个值
report.InsertValue("Bookmark_value","世界杯");//在书签“Bookmark_value”处插入值
 
3.创建一个表格
Table table =report.InsertTable("Bookmark_table", 2, 3, 0); //在书签“Bookmark_table”处插入2行3列行宽最大的表
 
4.合并单元格
report.MergeCell(table, 1, 1, 1, 3); //表名,开始行号,开始列号,结束行号,结束列号
 
5.表格添加一行
report.AddRow(table); //表名
 
6.在单元格中插入值
report.InsertCell(table, 2, 1,"R2C1");//表名,行号,列号,值
 
7.设置表格中文字的对齐方式
report.SetParagraph_Table(table, -1, 0);//水平方向左对齐,垂直方向居中对齐
 
8.设置表格字体
report.SetFont_Table(table,"宋体", 9);//宋体9磅
 
9.给现有的表格添加一行
report.AddRow(1);//给模板中第一个表格添加一行
 
10.确定现有的表格是否使用边框
report.UseBorder(1,true); //模板中第一个表格使用实线边框
 
11.给现有的表格添加多行
report.AddRow(1, 2);//给模板中第一个表格插入2行
 
12.给现有的表格插入一行数据
string[] values={"英超", "意甲", "德甲","西甲", "法甲" };
report.InsertCell(1, 2, 5,values); //给模板中第一个表格的第二行的5列分别插入数据
 
13.插入图片
string picturePath = @"C:Documents and SettingsAdministrator桌面1.jpg";
report.InsertPicture("Bookmark_picture",picturePath, 150, 150); //书签位置,图片路径,图片宽度,图片高度
 
14.插入一段文字
string text = "长期从事电脑操作者,应多吃一些新鲜的蔬菜和水果,同时增加维生素A、B1、C、E的摄入。为预防角膜干燥、眼干涩、视力下降、甚至出现夜盲等,电 脑操作者应多吃富含维生素A的食物,如豆制品、鱼、牛奶、核桃、青菜、大白菜、空心菜、西红柿及新鲜水果等。";
report.InsertText("Bookmark_text",text);
 
15.最后保存文档
report.SaveDocument(RepPath); //文档路径
 
第四步,运行程序生成文档,并查看生成的文档

希望本文所述对大家的C#程序设计有所帮助。


    
 
 

您可能感兴趣的文章:

  • c#通过委托delegate与Dictionary实现action选择器代码举例
  • C#实现获取枚举中元素个数的方法
  • C#实现自定义双击事件
  • C#键盘输入回车键实现点击按钮效果的方法
  • C#实现获取一年中是第几个星期的方法
  • C#实现Datatable排序的方法
  • C#实现装箱与拆箱操作简单实例
  • 解决C#中WebBrowser的DocumentCompleted事件不执行的实现方法
  • C#下实现创建和删除目录的实例代码
  • 使用C#实现在屏幕上画图效果的代码实例
  • C#实现过滤html标签并保留a标签的方法
  • c#实现TextBox只允许输入数字
  • C# Winform 整个窗口拖动的实现代码
  • c# ListView实现双击Item事件的变通方法
  • C#实现随鼠标移动窗体实例
  • C#中的FileUpload 选择后的预览效果具体实现
  • C# 窗体隐藏及任务管理器中禁止关闭的实现代码
  • C#的锯齿数组以及C++实现代码
  • C#格式化文件大小的实现代码
  • C#怎样才能实现窗体最小化到托盘呢?
  • C# char类型字符转换大小写的实现代码
  • java Servlet实现Session创建存取以及url重写代码示例
  • Linux下如何在普通用户下创建原始套接字(实现ping)
  • python使用循环实现批量创建文件夹示例
  • 如何实现线程的“即时创建,即时销毁”?
  • PHP创建桌面快捷方式实现代码
  • linux编程,cp程序是如何实现的??别简单跟我说用link,link创建的是硬链接,不能跨文件系统的
  • wince程序防止创建多个实例实现互斥作用
  • kernel 进程创建的实现,初级问题,大家指教
  • Android创建文件实现对文件监听示例
  • 如何用shell实现 删除创建时间超过指定时间的文件?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • c++通用模板类(template class)定义实现详细介绍
  • C#用Lambda和委托实现模板方法
  • 排序算法模板实现示例分享
  • 自定义Adapter并通过布局泵LayoutInflater抓取layout模板编辑每一个item实现思路
  • 通过javascript实现DIV居中,兼容各浏览器版本
  • socket实现多文件并发传输,求助多线程实现问题?
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • interface 到底有什么用???实现接口,怎么实现??
  • 通过javascript库JQuery实现页面跳转功能代码
  • 怎么用Jsp实现在页面实现树型结构?
  • sharepoint 2010 使用STSNavigate函数实现文件下载举例
  • windows 下的PortTunnel 在linux下怎么实现?或者相应的已经实现的软件?端口映射
  • php实现socket实现客户端和服务端数据通信源代码
  • 网站重定向用C语言实现iptables,ACL实现
  • flash AS3反射实现(describeType和getDefinitionByName)
  • 在linux下如何编程实现nslookup命令实现的IP地址和域名互相转换的功能?
  • boost unordered_map和std::list相结合的实现LRU算法
  • 求在freebsd+Squid下实现pc上网的透明代理的实现方法!给出具体配置方法的高分谢!
  • 使用java jdk中的LinkedHashMap实现简单的LRU算法
  • linux下如实现与window下的驱动器实现文件共享??
  • iphone cocos2d 精灵的动画效果(图片,纹理,帧)CCAnimation实现
  • qt如何实现:操作键盘实现数据的滚动?
  • c语言判断某一年是否为闰年的各种实现程序代码
  • 我想用APPLET实现读取客户端的图片文件,该如何实现?
  • html<pre>标签自动换行实现方法
  • PING是用TCP,还是用UDP来实现的?或是采用其它协议实现的?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3