想用C#将Doc格式转换为HTML?只需Aspose就够了
Aspose.Words for .NET是高级Word文档处理API , 用于执行各种文档管理和操作任务 。 该API支持生成 , 修改 , 转换 , 呈现和打印文档的能力 , 而无需在跨平台应用程序中直接利用Microsoft Word 。
Aspose.Words可用于使用C#或VB.NET执行将Word文档(DOC / DOCX)转换为HTML或MHTML格式的网页 。 Microsoft Word文档的转换是一种流行的用例 , 因此API支持不同的转换选项 。 让我们看一下本文中将讲解哪些功能:
- 使用C#VB.NET以编程方式将Word DOC或DOCX转换为HTML网页
- 使用C#中的往返信息将Word DOC或DOCX转换为HTML
- 在C#VB.NET中将Word DOC或DOCX转换为MHTML
文章插图
使用C#VB.NET以编程方式将Word DOC或DOCX转换为HTML网页使用C#或VB.NET在.NET应用程序中以编程方式将Word文档(DOC / DOCX)有效地转换为HTML网页 。 您需要按照以下步骤进行转换:
- 加载输入的DOCX Word文档 。
- 初始化HtmlSaveOptions的实例 。
- 保存输出的HTML文件 。
// Load the document from disk.Document doc = new Document(dataDir + "Test File.docx");// Set HtmlSaveOptionsHtmlSaveOptions options = new HtmlSaveOptions();options.SaveFormat = SaveFormat.Html;// Save the document into HTMLdoc.Save(dataDir + "Document.html", options);
使用C#中的往返信息将Word DOC或DOCX转换为HTML将Word转换为HTML时会保存一些其他信息 。 它被称为往返信息 , 对于将转换后的HTML文件再次呈现为word文档的情况很有用 。 您可以按照以下步骤使用C#将DOC / DOCX转换为HTML:- 加载输入的word文档 。
- 将ExportRoundtripInformation设置为true 。
- 保存输出的HTML文件 。
【想用C#将Doc格式转换为HTML?只需Aspose就够了】
// Load the document from disk.Document doc = new Document(dataDir + "Test File (doc).docx");HtmlSaveOptions options = new HtmlSaveOptions();// HtmlSaveOptions.ExportRoundtripInformation property specifies// Whether to write the roundtrip information when saving to HTML, MHTML or EPUB.// Default value is true for HTML and false for MHTML and EPUB.options.ExportRoundtripInformation = true;doc.Save(dataDir + "ExportRoundtripInformation_out.html", options);
在C#VB.NET中将Word DOC或DOCX转换为MHTML当需要带有嵌入式图像和字体的单个HTML文件时 , MHTML文件格式值得一提 。 您可以按照以下步骤将Word文档(DOC / DOCX)转换为MHTML:- 加载源DOC / DOCX文件 。
- 将SaveFormat设置为MHTML 。
// Load the document from disk.Document doc = new Document(dataDir + "Test File.docx");// Set HtmlSaveOptionsHtmlSaveOptions options = new HtmlSaveOptions();options.SaveFormat = SaveFormat.Mhtml;// Save the document into MHTMLdoc.Save(dataDir + "Document.mhtml", options);
如果您有任何疑问或需求 , 请随时加入Aspose技术交流群(642018183) , 我们很高兴为您提供查询和咨询 。
推荐阅读
- Kensington发布StudioDock 将iPad Pro扩展坞与无线充电器相结合
- Satechi推出Dock5多设备充电站 一次可同时充五种设备
- Firefox 火狐浏览器将默认支持 AVIF 图像格式,教你在 84.0 版本开启
- Edge正测试“Smart Copy”功能:可不丢失格式复制粘贴网页内容
- 我不用智能机:不是不想用,而是不会用没人教
- iOS 14.3更新 iPhone12 Pro系列正式支持RAW格式
- Gmail、Docs、YouTube等服务遭遇大面积故障 原因不明
- 一分钟编程之让百度谷歌一下
- 教你查看运行容器的docker run启动参数
- IT工程师都需要掌握的容器技术之Docker容器管理