如何使用 Open XML SDK 和 .Net 将 XML 文档加载到 Excel 中
在WPF桌面应用程序中,我需要在没有安装office的生产服务器上创建Excel 2007/2010。我有一堆 XML 文件,我想将它们加载到工作簿的单独页面中,模仿“数据>获取外部数据>从 XML 导入”操作,并生成类似以下内容的内容:
我认为我最好的选择是 Open XML SDK,但我不确定这是否可行。
In a WPF desktop application, I need to create an Excel 2007/2010 on a production server without office installed. I have a bunch of XML files which I want to load into separate pages of the workbook, mimicking the 'Data>Get External Data>From XML Import' operation, and resulting in something like:
I think my best bet would be the Open XML SDK, but am not sure this is possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议查看 ClosedXML (可怕的名字),通过 OpenXML 标准进行高级 Excel 文件操作。它抽象了直接处理 OpenXML 接口的大量复杂性。
小例子:
I'd suggest looking at ClosedXML (horrible name) for doing high-level Excel file manipulation through the OpenXML standard. It abstracts out a lot of the complexity of dealing directly with the OpenXML interfaces.
Tiny example:
您可以使用Templater。免责声明:我是该库的作者。
代码看起来像这样:
You could use Templater. Disclaimer: I'm the author of the library.
The code would look something like this: