当您想将 word 文档放到 web 上时,建议您将 word 文档转换为 html 便于文档通过网页访问。本文将演示如何通过 c# 和 vb.net 使用 以编程方式将 word 转换为 html。
安装 spire.doc for .net
首先,您需要添加 spire.doc for .net 包中包含的 dll 文件作为.net项目中的引用。dll 文件可以从下载或通过 安装。
pm> install-package spire.doc
将 word 转换为 html
以下步骤向您展示如何使用 spire.doc for .net 将 word 转换为 html。
- 创建一个 document 实例。
- 使用 document.loadfromfile() 方法加载 word 示例文档。
- 使用 document.savetofile() 方法将文档保存为 html 文件。
- c#
- vb.net
using spire.doc;
namespace wordtohtml
{
class program
{
static void main(string[] args)
{
//创建document实例
document mydoc = new document();
//加载示例word文档
mydoc.loadfromfile(@"c:\users\administrator\desktop\sample.docx", fileformat.xml);
//保存为html
mydoc.savetofile("output_wordtohtml.html", fileformat.html);
}
}
}
imports spire.doc
namespace wordtohtml
class program
shared sub main(byval args() as string)
'创建document实例
document mydoc = new document()
'加载示例word文档
mydoc.loadfromfile("c:\users\administrator\desktop\sample.docx", fileformat.xml)
'保存为html
mydoc.savetofile("output_wordtohtml.html", fileformat.html)
end sub
end class
end namespace
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请 该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。 获取有效期 30 天的临时许可证。