程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#將html導出到word(基於wps)

C#將html導出到word(基於wps)

編輯:C#入門知識

由於客戶需要,我們需要實現將網頁導出到word中的功能,在此過程中,嘗試使用過openoffice、itext、wordapi等各種方法,都不盡如人意。openoffice導出的問題圖片信息在word2007下看不到,itext導出嵌套表格格式會亂套、wordapi導出倒是正常,但是無法將圖片信息一並導入到文件中。最後沒有辦法突發奇想用wps試試,沒想到成功了。

在嘗試之前因為不知道wps是否有相關的api或者com組件,事先致電了金山客服詢問了相關事宜,經確認wps是提供com組件調用的,現在即附上導出代碼供大家測試分享。

 

C#代碼  收藏代碼
  1. WPS.Application wps = null;  
  2.        try  
  3.        {  
  4.            wps = new WPS.Application();  
  5.        }  
  6.        catch (Exception ex) {  
  7.            WriteLine(ex.Message);  
  8.            return "";  
  9.        }  
  10.        WPS.Document doc = wps.Documents.Open(httpUrl, false, true);  
  11.        string filename = System.DateTime.Now.Year.ToString() + System.DateTime.Now.Month.ToString() + System.DateTime.Now.Day.ToString() +  
  12.        System.DateTime.Now.Hour.ToString() + System.DateTime.Now.Minute.ToString() + System.DateTime.Now.Second.ToString();  
  13.   
  14.   
  15.        string serverPath = Server.MapPath("~/doc/");  
  16.        string savePath = serverPath + filename + ".doc";  
  17.        object saveFileName = savePath;  
  18.        doc.SaveAs(savePath, WPS.WdSaveFormat.wdFormatDocument);  
  19.   
  20.        doc.Close(WPS.WdSaveOptions.wdSaveChanges, WPS.WdOriginalFormat.wdWordDocument, WPS.WdRoutingSlipStatus.wdNotYetRouted);  
  21.        wps.Quit(WPS.WdSaveOptions.wdSaveChanges, WPS.WdOriginalFormat.wdWordDocument, WPS.WdRoutingSlipStatus.wdNotYetRouted);  

在此需要先引用wps的com組件,並且using WPS;使用還是非常方便的推薦大家使用.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved