c#操作word模板插入文字、图片及表格

1.建立word模板文件 person.dot
用书签 标示相关字段的填充位置

2.建立web应用程序 加入Microsoft.Office.Interop.Word引用
具体添加引用请参看
http://www.microsoft.com/china/msdn/library/office/office/OfficePrIntopAssFAQ.mspx?mfr=true

3.相关示例代码

protected void CreateReport_Click(object sender, EventArgs e)
{
Microsoft.Office.Interop.Word.Application appWord = null;//应用程序
Microsoft.Office.Interop.Word.DocumentClass doc = null;//文档
try
{
appWord = new Microsoft.Office.Interop.Word.Application();
appWord.Visible = false;
object objTrue = true;
object objFalse = false;
object objTemplate = Server.MapPath("person.dot");//模板路径
object objDocType = WdDocumentType.wdTypeDocument;
doc = (DocumentClass)appWord.Documents.Add(ref objTemplate, ref objFalse, ref objDocType,ref objTrue);
//第一步生成word文档
//定义书签变量
object obDD_Name = "bm_Name";//姓 名
object obDD_Sex = "bm_Sex";//性 别
object obDD_Birthday = "bm_Birthday"; //出生年月
object obpic="pic";
object obtable = "obtable";
object Nothing = System.Reflection.Missing.Value;
//InlineShape shape = appWord.Selection.InlineShapes.AddPicture(@"F:\Picture\_DSC1602.JPG", ref Nothing, ref Nothing, ref Nothing);
//第二步 读取数据,填充数据集
System.Data.DataTable dt = new DataTable();
dt.Columns.Add("p_Name");
dt.Columns.Add("p_Sex");
dt.Columns.Add("p_Birthday");
DataRow dr = dt.NewRow();
dr["p_Name"] = "张三";
dr["p_Sex"] = "男";
dr["p_Birthday"] = "1980-01-01";
dt.Rows.Add(dr); //第三步 给书签赋值
//给书签赋值
doc.Bookmarks.get_Item(ref obDD_Name).Range.Text = dt.Rows[]["p_Name"].ToString(); //姓 名
doc.Bookmarks.get_Item(ref obDD_Sex).Range.Text = dt.Rows[]["p_Sex"].ToString();//性 别
doc.Bookmarks.get_Item(ref obDD_Birthday).Range.Text = dt.Rows[]["p_Birthday"].ToString();//年龄
doc.Bookmarks.get_Item(ref obpic).Range.InlineShapes.AddPicture(@"F:\Picture\_DSC1602.JPG", ref Nothing, ref Nothing, ref Nothing); //文档中插入表格
//doc.Bookmarks.get_Item(ref obtable).Range.Tables.Add(doc.Bookmarks.get_Item(ref obtable).Range, 12, 3, ref Nothing, ref Nothing);
Microsoft.Office.Interop.Word.Table newTable = doc.Tables.Add(doc.Bookmarks.get_Item(ref obtable).Range, , , ref Nothing, ref Nothing);
newTable.Borders.OutsideLineStyle = WdLineStyle.wdLineStyleSingle;
newTable.Borders.InsideLineStyle = WdLineStyle.wdLineStyleSingle;
//给文档的最后一行再添加内容
doc.Paragraphs.Last.Range.Text = ""; //第四步 生成word
object filename = Server.MapPath("~") + "\\BG\\" + dt.Rows[]["p_Name"].ToString() + ".doc";
object miss = System.Reflection.Missing.Value;
doc.SaveAs(ref filename, 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, ref miss);
object missingValue = Type.Missing;
object doNotSaveChanges = WdSaveOptions.wdDoNotSaveChanges;
doc.Close(ref doNotSaveChanges, ref missingValue, ref missingValue);
appWord.Application.Quit(ref miss, ref miss, ref miss);
doc = null;
appWord = null; }
catch (System.Exception ex)
{
//捕捉异常,如果出现异常则清空实例,退出word,同时释放资源
string aa = ex.ToString();
object miss = System.Reflection.Missing.Value;
object missingValue = Type.Missing;
object doNotSaveChanges = WdSaveOptions.wdDoNotSaveChanges;
doc.Close(ref doNotSaveChanges, ref missingValue, ref missingValue);
appWord.Application.Quit(ref miss, ref miss, ref miss);
doc = null;
appWord = null;
}
}

-----
以上代码在运行时 如遭遇80070005错误

解决方法一:
控制面板-》管理工具-》组件服务-》计算机-》我的电脑-》DCom配置-》找到Microsoft Word文档
之后
单击属性打开此应用程序的属性对话框。 
2. 单击标识选项卡,然后选择交互式用户。 
3.单击"安全"选项卡,分别在"启动和激活权限"和"访问权限"组中选中"自定义",然后
自定义->编辑->添加ASP.NET账户和IUSER_计算机名
4. 确保允许每个用户访问,然后单击确定。 
5. 单击确定关闭 DCOMCNFG。

解决方法二:
如果上述方法不能解决问题,就应该是权限问题,请尝试用下面的方法:
在web.config中使用身份模拟,在<system.web>节中加入 <identity impersonate="true" userName="你的用户名

" password="密码"/>
</system.web>

参考文档:http://wenku.baidu.com/view/fc8aa56fb84ae45c3b358c98.html

附:图片的详细操作

object filename = @"C:\Inetpub\wwwroot\TestWebApp\test.doc";//文件名 
Word.Application a = new Word.ApplicationClass();//建立一个Word程序对像 
object Nothing = System.Reflection.Missing.Value;//空值 
Word.Document b = a.Documents.Open(ref filename,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing);//建立一个Word文档对像

//其实这步就是执行了这个宏 
InlineShape shape = a.Selection.InlineShapes.AddPicture(@"C:\Documents and Settings\Administrator\桌面\2003121512223366481.jpg",ref Nothing,ref Nothing,ref Nothing);

shape.Height = InchesToPoints(0.5) 
shape.Width = InchesToPoints(0.5)

//Selection.InlineShapes.AddPicture FileName:= "C:\Documents and Settings\Administrator\桌面\2003121512223366481.bmp", LinkToFile:=False, SaveWithDocument:=True End Sub b.Save();//保存 
b.Close(ref Nothing,ref Nothing,ref Nothing);//关闭Word文档 
a.Quit(ref Nothing,ref Nothing,ref Nothing);//退出Word程序

c# 向word中指定的书签写数据

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
//using System.Web.UI.HTMLControls;
//using Microsoft.office;
using Microsoft.Office.Core;
using Microsoft.Office.Interop;
using Microsoft.Office.Interop.Word; namespace common
{
public class WriteInWord
{ ApplicationClass app = null;//定义应用程序对象
Document doc = null; //定义word文档对象
Object missing = System.Reflection.Missing.Value;//定义空变量 Object isReadOnly = false;
public void OpenDocument(string parFilePath)
{ object filePath = parFilePath;//文档路径 app = new ApplicationClass(); //打开文档 doc = app.Documents.Open(ref filePath, 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); doc.Activate();//激活文档 } /// <summary> /// 向word文档写入数据 /// </summary> /// <param name="parLableName">域标签</param> /// <param name="parFillName">写入域中的内容</param> public void WriteIntoDocument(string parLableName, string parFillName)
{ object lableName = parLableName; Bookmark bm = doc.Bookmarks.get_Item(ref lableName);//返回标签 bm.Range.Text = parFillName;//设置域标签的内容 }
/// <summary> /// 保存并关闭 /// </summary> /// <param name="parSaveDocPath">文档另存为的路径</param> public void SaveAndClose(string parSaveDocPath)
{ object savePath = parSaveDocPath;//文档另存为的路径 Object saveChanges = app.Options.BackgroundSave;//关闭doc文档不提示保存 //文档另存为 doc.SaveAs(ref savePath, 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); doc.Close(ref saveChanges, ref missing, ref missing);//关闭文档 app.Quit(ref missing, ref missing, ref missing); //关闭应用程序 } }

---------------------
作者:hy31337
来源:CNBLOGS
原文:https://www.cnblogs.com/elves/p/3624115.html
版权声明:本文为作者原创文章,转载请附上博文链接!

最新文章

  1. 如何在EF中实现left join(左联接)查询
  2. sql server 语句使用规范
  3. 阿里的maven私服
  4. JS 取得一个区间的随机整数
  5. Intel 80x86 Linux Kernel Interrupt(中断)、Interrupt Priority、Interrupt nesting、Prohibit Things Whthin CPU In The Interrupt Off State
  6. (三)、Express 路由、静态文件、
  7. linux 禁止指定账号ssh登陆
  8. jdk配置环境变量(windows)
  9. UML类图常见的几种关系
  10. CodeForces 606B Testing Robots
  11. win10的mysql服务无法启动
  12. Mybatis接口编程原理分析(一)
  13. Nginx 配置反向代理后,页面中取绝对URL地址的问题显示代理端口
  14. python中序列化模块json和pickle
  15. 异常解决 Unable to write generated Java files for schemas: null
  16. Dynamics 365 Customer Engagement 中对API的调整内容分享
  17. Django之modelform修改数据库
  18. Oracle PLSQL Demo - 05.WHILE循环[WHILE LOOP]
  19. css加载方式link和@import的区别!
  20. PAT——1018. 锤子剪刀布

热门文章

  1. jquery输入框自动提示
  2. less知识点总结(一)
  3. .Net Core 认证系统之Cookie认证源码解析
  4. Effective Modern C++:06lambda表达式
  5. 阿里云发布Apsara SA系列混合云存储阵列
  6. MUI - 封装localStorage与plus.storage
  7. Precision和Recall
  8. iOS 多个精致动画
  9. 2019-9-23-dotnet-判断特定进程存在方法
  10. 去除selet标签默认样式