从 xml 文件导出到 Excel 或从数据集中获取 xml
大家好,谁能告诉我将 xml 文件导出到 Excel 文件的代码吗?
Hi can any one let me know the code to export the xml file to Excel file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以先将 xml 文件加载到数据集,然后从数据集中生成 excel 文件。您应该通过谷歌搜索“xml to dataset in c#”和“dataset to excel in c#”获得大量示例
you can load your xml file to dataset first and then from dataset you can generate excel file. You should get plenty of examples by doing google search for 'xml to dataset in c#' and 'dataset to excel in c#'
为此,您不需要 .NET; Excel 可以将电子表格存储为 XML,因此您需要将 XML 转换为 Excel 可以理解的格式。
使用 XSLT 可以很好地完成这些转换。
这篇文章为您提供了很好的介绍关于如何做到这一点。
——杰罗恩
You don't need .NET for that; Excel has can store spreadsheets as XML, so you need to convert your XML into a format that Excel understands.
Those conversions can be done very well using XSLT.
This article gives you a nice introduction on how to do that.
--jeroen