程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> C# WORD操作實現代碼

C# WORD操作實現代碼

編輯:C#基礎知識
1.先通過程序生成報表樣式的HTML頁面,然後修改HTML頁面的後綴名為DOC。
2.定制WORD文檔的模板文件,在C#中操作WORD模板,生成新的WORD文檔。
第一方案簡單,只需要改動文件的擴展名就行了,但是也存在了一些問題,譬如生成的WORD文檔樣式的丟失。這樣對於客戶來說可能是一個無法通過的方案。第二方案比較復雜,需要調用OFFICE的WORD組件通過C#來操作WORD,進而生成WORD。此方法類似於我們在c#中的後台拼接數據。雖然麻煩,但是能夠靈活定制,只不過是操作WORD對象而已。
經過再三考慮:決定用第二種方法來生成WORD報告文檔。
通過自己的實踐,這個需求總算是搞定了,在實際開發的過程中,遇到了這樣那樣的問題,還好,通過不斷的查找網絡資源,結合實際開發中的情況,問題都得到了解決。現將本人在開發過程中的一些理解與經驗總結一下:
在VS2008平台下,引用.net-Microsoft.Office.Interop.Word.12,這樣就可以在程序用操作WORD對象了。
通過簡單執行,報了80070005錯誤,這個錯誤是因為權限不夠,需要在DCOM配置中更改.net和IIS用戶的操作權限,具體修改過程如下: 解決方法一:
1.控制面板-》管理工具-》組件服務-》計算機-》我的電腦-》DCom配置-》找到Microsoft Word文檔之後,單擊屬性打開此應 用程序的屬性對話框。
2.單擊標識選項卡,然後選擇交互式用戶。
3.單擊"安全"選項卡,分別在"啟動和激活權限"和"訪問權限"組中選中"自定義",然後自定義->編輯->添加ASP.NET賬戶和IUSER_計算機 名。
4. 確保允許每個用戶訪問,然後單擊確定。
5. 單擊確定關閉 DCOMCNFG。
如果上述方法不能解決問題,就應該是權限問題,請嘗試用下面的方法:
在web.config中使用身份模擬,在<system.web>節中加入 <identity impersonate="true" userName="你的用戶名 " password="密碼 "/>
</system.web>
解決了上述問題,開始考慮如何創建WORD模板文件,WORD的模板文件其實就是通過書簽來添加內容的。也就是通過在WORD文檔中創建書簽,然後在程序中獲取模板文件的所有書簽,通過給書簽賦值來進行文檔生成的。
在程序中的操作流程如下:
聲明WORD程序的對象 → 聲明一個WORD文檔對象 → 獲取當前的操作文檔對象 → 獲取文檔所有的書簽 → 將數據庫數據賦值到對應的書簽 → 將文檔另存為指定的文件夾下.
下面將針對農業植物測試報告來分析具體的代碼實現:
代碼如下:

//生成WORD程序對象和WORD文檔對象
Microsoft.Office.Interop.Word.Application appWord = new Application();
Microsoft.Office.Interop.Word.Document doc = new Document();
object oMissing = System.Reflection.Missing.Value;//這個是什麼東西,我始終沒搞明白-_-
//打開模板文檔,並指定doc的文檔類型
object objTemplate = Server.MapPath(p_TemplatePath);
object objDocType = WdDocumentType.wdTypeDocument;
doc = (Document)appWord.Documents.Add(ref objTemplate, ref objFalse, ref objDocType, ref objTrue);
//獲取模板中所有的書簽
Bookmarks odf = doc.Bookmarks;
string[] testTableremarks = { "ApplyNo", "AuditingDate", "Auditor", "CheckDate", "Checker"};
string[] testTablevalues = { "ApplyNo", "AuditingDate", "Auditor", "CheckDate", "Checker",};
//循環所有的書簽,並給書簽賦值
for (int oIndex = 0; oIndex < testTableremarks.Length; oIndex++)
{
obDD_Name = WD + testTableremarks[oIndex];
doc.Bookmarks.get_Item(ref obDD_Name).Range.Text = p_TestReportTable.Rows[0][testTablevalues [oIndex]].ToString();//此處Range也是WORD中很重要的一個對象,就是當前操作參數所在的區域
}
//第四步 生成word,將當前的文檔對象另存為指定的路徑,然後關閉doc對象。關閉應用程序
object filename = Server.MapPath(p_SavePath) + "\\Testing_" + DateTime.Now.ToShortDateString() + ".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;
this.Hid_ShowMessage.Value = "生成成功!";

上述代碼就是一個通過模板文件生成WORD的過程。其實也就是一個替換書簽內容的過程。
在開發的過程中,有些數據是動態增加的,假如我要向一個表格中動態的添加幾行數據,就無法用替換書簽的方式來進行操作,需要通過程序在文檔頁面的表格中添加行。
向表格中添加行,有兩種操作形式:一種是在WORD模板中已經存在了一個表格。一種是我們在程序中直接添加一個表格對象。
第一種情況下,需要注意:在WORD模板中要操作的表格中,不能有縱向合並的單元格,不然程序無法獲取到當前要操作對象導致程序報錯.單元格的合並,我們可以在程序中控制。
第二種情況下就需要我們通過程序去直接添加表格了。
生成表格的代碼具體如下:
1.獲取文檔中已存在的表格:
Microsoft.Office.Interop.Word.Table characterTable = doc.Tables[2];//在document對象的集合操作中,起始點是從1開始,並不是從0開始的,此處需要注意。
2.在文檔中直接生成表格,首先要獲取插入表格的位置,然後添加表格對象:
object oEndOfDoc = "\\endofdoc";//WORD中預定義的書簽,還有很多,此處就不一一列舉。
object oMissing = System.Reflection.Missing.Value;
Range wrdRng = doc.Bookmarks.get_Item(ref oEndOfDoc).Range;//獲取當前文檔的末尾位置。
wrdRng.InsertAfter(" ");//插入一行,此處不能用 wrdRng.InsertAfter(""),如果用這個,就不能換行,我也不知道為什麼。
代碼如下:

object oCollapseEnd = Microsoft.Office.Interop.Word.WdCollapseDirection.wdCollapseEnd;
object oPageBreak = Microsoft.Office.Interop.Word.WdBreakType.wdPageBreak;//分頁符
wrdRng.Collapse(ref oCollapseEnd);
wrdRng.InsertBreak(ref oPageBreak);//插入了一頁
wrdRng.Collapse(ref oCollapseEnd);
wrdRng.InsertAfter("圖片信息");
wrdRng.Font.Size = 20;//指定操作對象的文字大小
wrdRng.Font.Bold = 1;//指定操作對象的粗體:1為粗體,0為正常
wrdRng.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;//指定操作區域的文字布局:居中對齊
//上述代碼的意思是:找到當前的末尾位置,然後插入一個分頁符,相當於跳到了一個新頁,在這個新頁的頂端寫入文字“圖片信息”,並指定文字大小為20,粗體居中顯示。
wrdRng = doc.Bookmarks.get_Item(ref oEndOfDoc).Range;
wrdRng.InsertAfter(" ");
wrdRng = doc.Bookmarks.get_Item(ref oEndOfDoc).Range;
wrdRng.InsertParagraphAfter();//插入一個段落,在此段落上插入一個2行一列的表格。
Microsoft.Office.Interop.Word.Table newTable = doc.Tables.Add(wrdRng, 2, 1, ref oMissing, ref oMissing);
我們還可以對表格進行格式設置,此處我們就不在一一列舉。
3.下面我們分析一下對表格的單元格的操作:合並,拆分。這個就需要我們根據實際表格來進行操作:
//獲取具體的某個單元格(1,1),獲取第一行第一列的單元格
Cell cell = doc.Tables[1].Cell(1,1);
cell.Range.Text="Text";//指定當前單元格的內容為Text
在Table的操作中,添加新行:
object beforeRow = doc.Tables[1].Rows[2];//此行是先獲取到第二行
doc.Tables[1].Rows.Add(ref beforeRow);//效果類似於在WORD中此表格的第二行上進行【插入行】操作,插入的新行將會插入到當前行的上一行中,格式也是和此行一致的。
//合並單元格:感覺在此處合並單元格挺傻瓜的,你只需要指定你要合並的起始單元格和結束單元格,然後通過Merge操作就行了
Cell cell = doc.Tables[1].Cell(iRow, 2);//列合並
cell.Merge(doc.Tables[1].Cell(iRow, 6));
Cell cell1 = doc.Tables[1].Cell(iRow - 1, 1);//行合並
cell1.Merge(doc.Tables[1].Cell(iRow + 1, 1));
上述操作就是在此程序中用到的一些知識點,還有好多的東西需要去熟悉、理解。
另外,在程序的測試過程中發現,當執行一次文檔生成後,在資源管理器中始終有winword.exe進程殺不掉,目前的解決辦法是:直接殺進程,代碼如下:
代碼如下:

protected void killAllProcess() // 殺掉所有winword.exe進程
{
System.Diagnostics.Process[] myPs;
myPs = System.Diagnostics.Process.GetProcesses();
foreach (System.Diagnostics.Process p in myPs)
{
if (p.Id != 0)
{
string myS = "WINWORD.EXE" + p.ProcessName + " ID:" + p.Id.ToString();
try
{
if (p.Modules != null)
if (p.Modules.Count > 0)
{
System.Diagnostics.ProcessModule pm = p.Modules[0];
myS += "\n Modules[0].FileName:" + pm.FileName;
myS += "\n Modules[0].ModuleName:" + pm.ModuleName;
myS += "\n Modules[0].FileVersionInfo:\n" + pm.FileVersionInfo.ToString();
if (pm.ModuleName.ToLower() == "winword.exe")
p.Kill();
}
}
catch
{ }
finally
{

}
}
}
}

目前為止,一個WORD文檔就生成了。上述為我在這個程序開發中遇到的問題和解決方法,可能有好多地方都是考慮不全的,如果在程序開發中對WORD的操作有新的認識的話,歡迎和我溝通交流,彼此提高!
下邊是在網上一些比較好的摘抄:
創建新Word
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);

打開文檔:
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
object fileName = @"E:CCCXCXXTestDoc.doc";
oDoc = oWord.Documents.Open(ref fileName,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

導入模板
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
object fileName = @"E:XXXCCXTest.doc";
oDoc = oWord.Documents.Add(ref fileName, ref oMissing,
ref oMissing, ref oMissing);

.添加新表
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);
object start = 0;
object end = 0;
Word.Range tableLocation = oDoc.Range(ref start, ref end);
oDoc.Tables.Add(tableLocation, 3, 4, ref oMissing, ref oMissing);

.表插入行
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);
object start = 0;
object end = 0;
Word.Range tableLocation = oDoc.Range(ref start, ref end);
oDoc.Tables.Add(tableLocation, 3, 4, ref oMissing, ref oMissing);
Word.Table newTable = oDoc.Tables[1];
object beforeRow = newTable.Rows[1];
newTable.Rows.Add(ref beforeRow);

.單元格合並
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);
object start = 0;
object end = 0;
Word.Range tableLocation = oDoc.Range(ref start, ref end);
oDoc.Tables.Add(tableLocation, 3, 4, ref oMissing, ref oMissing);
Word.Table newTable = oDoc.Tables[1];
object beforeRow = newTable.Rows[1];
newTable.Rows.Add(ref beforeRow);
Word.Cell cell = newTable.Cell(1, 1);
cell.Merge(newTable.Cell(1, 2));

.單元格分離
代碼如下:

object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add( oMissing,
ref oMissing, ref oMissing);
object start = 0;
object end = 0;
Word.Range tableLocation = oDoc.Range(ref start, ref end);
oDoc.Tables.Add(tableLocation, 3, 4, ref oMissing, ref oMissing);
Word.Table newTable = oDoc.Tables[1];
object beforeRow = newTable.Rows[1];
newTable.Rows.Add(ref beforeRow);
Word.Cell cell = newTable.Cell(1, 1);
cell.Merge(newTable.Cell(1, 2));
object Rownum = 2;
object Columnnum = 2;
cell.Split(ref Rownum, ref Columnnum);

通過段落控制插入
代碼如下:

object oMissing = System.Reflection.Missing.Value;
object oEndOfDoc = "\endofdoc"; /**//* endofdoc is a predefined bookmark */
//Start Word and create a new document.
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);
//Insert a paragraph at the beginning of the document.
Word.Paragraph oPara1;
oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing);
oPara1.Range.Text = "Heading 1";
oPara1.Range.Font.Bold = 1;
oPara1.Format.SpaceAfter = 24; //24 pt spacing after paragraph.
oPara1.Range.InsertParagraphAfter();
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved