xml 是一种文本标记语言,主要用于储存和传输任意数据。xml 文件具有简洁、普遍、易用等特点,在网络服务器中尤其受欢迎。 xml 和 html 都是文本标记语言,且具有相似性,但两者的应用场景不同, xml 主要用于储存和传输数据,而 html 则是用于显示网页内容。本文将展示如何使用 spire.doc for .net 将 word 文档转换为 xml 文件。
安装 spire.doc for .net
首先,您需要将 spire.doc for.net 包含的 dll 文件作为引用添加到您的 .net 项目中。dll 文件可以从 此链接 下载,也可以通过 安装。
pm> install-package spire.doc
将 word 文档转换为 xml 文件
详细操作步骤如下:
- 创建 document 类的对象。
- 用 document.loadfromfile() 方法从磁盘加载 word 文档。
- 用 document.savetofile() 方法保存 word 文档为 xml 文件。
- c#
- vb.net
using system;
using spire.doc;
namespace wordtoxml
{
internal class program
{
static void main(string[] args)
{
//创建 document 类的对象
document document = new document();
//从磁盘加载 word 文档
document.loadfromfile(@"d:\testp\test.docx");
//保存 word 文档为 xml 文件
document.savetofile("sample.xml", fileformat.xml);
}
}
}
imports system
imports spire.doc
module program
sub main(args as string())
'创建 document 类的对象
dim document as new document()
'从磁盘加载 word 文档
document.loadfromfile("d:\testp\test.docx")
'保存 word 文档为 xml 文件
document.savetofile("sample.xml", fileformat.xml)
end sub
end module
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。