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

來源:互聯網
上載者:User

標籤:style   http   java   color   使用   檔案   

由於客戶需要,我們需要實現將網頁匯出到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;使用還是非常方便的推薦大家使用.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.