2013-10-03 77 views
0

我必須從C#中的這個XML文件中讀取以下html。將html轉換爲word格式的文檔

<?xml version="1.0" encoding="utf-8"?> 
<?mso-infoPathSolution name="urn:schemas-microsoft-com:office:infopath:TestCRForm:-myXSD-2013-01-09T15-23-27" solutionVersion="1.0.0.285" productVersion="14.0.0.0" PIVersion="1.0.0.0" href="http://win-rskupn6mf2b:2331/TestCRForm/Forms/template.xsn"?> 
<?mso-application progid="InfoPath.Document" versionProgid="InfoPath.Document.3"?> 
<my:myFields xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:pc="http://schemas.microsoft.com/office/infopath/2007/PartnerControls" xmlns:ma="http://schemas.microsoft.com/office/2009/metadata/properties/metaAttributes" xmlns:d="http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields" xmlns:q="http://schemas.microsoft.com/office/infopath/2009/WSSList/queryFields" xmlns:dfs="http://schemas.microsoft.com/office/infopath/2003/dataFormSolution" xmlns:dms="http://schemas.microsoft.com/office/2009/documentManagement/types" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:tns="http://microsoft.com/webservices/SharePointPortalServer/UserProfileService" xmlns:s1="http://microsoft.com/wsdl/types/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2013-01-09T15:23:27" xmlns:xd="http://schemas.microsoft.com/office/infopath/2003" xml:lang="en-US"> 
    <my:VendorName>Vendor Name1</my:VendorName> 
    <my:Assignedto>Asigner</my:Assignedto> 
    <my:SOWNumber></my:SOWNumber> 
    <my:DraftStarted xsi:nil="true"></my:DraftStarted> 
    <my:DateComplete xsi:nil="true"></my:DateComplete> 
    <my:GLCode>Material No1</my:GLCode> 
    <my:LogID>2013-09-05T22:44:09</my:LogID> 
    <my:Status>New</my:Status> 
    <my:ProjectDescription> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:space="preserve"><div><em>This is Project Deliverable Info</em></div><div><span id="ms-rterangepaste-start"></span><span id="ms-rterangepaste-end"></span><div><em>Whjoa</em></div><div><strong><em>Dude</em></strong></div></div></html> 
    </my:ProjectDescription> 

</my:myFields> 

下「我:ProjectDescription」讀取HTML標記之後我必須把它插入Word文檔與所有格式保留

這個網站是由以下獲取:

XmlNodeList nodelist3 = xml.SelectNodes("my:myFields/my:ProjectDeliverables", nsm); 
       foreach (XmlNode node in nodelist3) 
        tc.key_deliverables = node.InnerXml; 

tc.key_deliverables則包含了HTML作爲字符串。

請告訴我如何繼續。

回答

0

如果您可以訪問Word COM或使用VSTO,則可以使用Word打開html文件(或將html內容輸出到新文檔中),並使用word對象模型另存爲docs/docx。

的其他方式:

+0

如果我有隻從HTML獲取文本這些工作。而在我的情況下,文檔已經創建,我必須將從HTML中提取的格式化文本添加到現有文檔中。 – mribot

+0

所有這些都適用於格式。圖像可能會導致問題,但無法通過第一種方法 - Word會正確打開帶有圖像的html內容。 – SalientBrain