最近寫的一個通過XML導出Word的方法,共大家參考討論:
方法的調用:
Dictionary<string, string> wordTexts = new Dictionary<string, string>();
Dictionary<string, DataTable> wordTable = new Dictionary<string, DataTable>();
WordMLHelper Word = new WordMLHelper();
wordTexts.Clear();
wordTexts.Add("XML中書簽名稱",“導出的內容”);
Word.SetNodeText(wordTexts);
DataTable dt=getDateTable();//獲得一個數據表
wordTable.Clear();
wordTable.Add("XML中書簽名稱", dt);
Word.SetNodeTable(wordTable);
Word.Save("存儲地址");
操作類的代碼如下:
using System;