C#根據(jù)Word模版生成Word文件
本文實(shí)例為大家分享了C#根據(jù)Word模版生成Word文的具體代碼,供大家參考,具體內(nèi)容如下
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進(jìn)程 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> /// 模版包含頭部信息和表格,表格重復(fù)使用 /// </summary> /// <param name="dt">重復(fù)表格的數(shù)據(jù)</param> /// <param name="expPairColumn">word中要替換的表達(dá)式和表格字段的對(duì)應(yīng)關(guān)系</param> /// <param name="simpleExpPairValue">簡(jiǎn)單的非重復(fù)型數(shù)據(jù)</param> public bool GenerateWord(DataTable dt, Dictionary<string, string> expPairColumn, Dictionary<string, string> simpleExpPairValue) { if (!File.Exists(tempFile.ToString())) { MessageBox.Show(string.Format("{0}模版文件不存在,請(qǐng)先設(shè)置模版文件。", 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();// 當(dāng)前文檔置前 bool isGenerate = false; if (simpleExpPairValue != null && simpleExpPairValue.Count > 0) isGenerate = ReplaceAllRang(simpleExpPairValue); // 表格有重復(fù) 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> /// 單個(gè)替換 模版沒(méi)有重復(fù)使用的表格 /// </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}模版中沒(méi)有找到指定的要替換的表達(dá)式。{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}模版中沒(méi)有找到指定的要替換的表達(dá)式。{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); //關(guān)閉Word進(jìn)程 } } }
3、效果
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:C#調(diào)用webservice接口的最新方法教程
欄 目:C#教程
本文標(biāo)題:C#根據(jù)Word模版生成Word文件
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5424.html
您可能感興趣的文章
- 01-10C#實(shí)現(xiàn)簡(jiǎn)單合并word文檔的方法
- 01-10http圖片上傳安全性問(wèn)題 根據(jù)ContentType (MIME) 判斷其實(shí)不準(zhǔn)確、不
- 01-10C#實(shí)現(xiàn)HTML轉(zhuǎn)WORD及WORD轉(zhuǎn)PDF的方法
- 01-10C#實(shí)現(xiàn)在網(wǎng)頁(yè)中根據(jù)url截圖并輸出到網(wǎng)頁(yè)的方法
- 01-10如何使用C#從word文檔中提取圖片
- 01-10C# DateTime.ToString根據(jù)不同語(yǔ)言生成相應(yīng)的時(shí)間格式
- 01-10C# 中DateTime 的使用技巧匯總
- 01-10C#在DataTable中根據(jù)條件刪除某一行的實(shí)現(xiàn)方法
- 01-10C#實(shí)現(xiàn)DataSet內(nèi)數(shù)據(jù)轉(zhuǎn)化為Excel和Word文件的通用類完整實(shí)例
- 01-10C#根據(jù)日期計(jì)算星期幾的實(shí)例代碼


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹(shù)的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10C#通過(guò)反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁(yè)無(wú)法打開(kāi)的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻 器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過(guò)重寫(xiě)Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 01-10C#中split用法實(shí)例總結(jié)
- 04-02jquery與jsp,用jquery
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 01-11Mac OSX 打開(kāi)原生自帶讀寫(xiě)NTFS功能(圖文
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10delphi制作wav文件的方法
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 01-10SublimeText編譯C開(kāi)發(fā)環(huán)境設(shè)置