将 docx 转换为 xlsx
我正在编写生成 docx 报告的 .NET 应用程序。我最后的要求之一是 - 还以 xlsx 格式生成这些报告。所以, 有没有简单的方法将 docx 转换为 xlsx 格式?我还没有找到任何解决方案或实用程序/库。想法之一是使用 Microsoft.Office.Interop 复制/粘贴方法,但我不知道它是否有帮助:)
I am writting .NET application that generates reports in docx. One of the last requirements I've got was - generate also these reports in xlsx format. So,
is there any simple way to convert docx to xlsx format? I haven't found any solution or utility/library. One of the ideas was to use Microsoft.Office.Interop Copy/Paste methods, but I don't know if it helps :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用了 MS 工具,让您可以像处理 xml 一样处理 Office 文档:
Open XML SDK 2.0 for Microsoft Office
http://www.microsoft.com/downloads/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang =en
与互操作相比,这具有以下优点:
We have used a MS tool that allows you to work with Office documents as if they were xml:
Open XML SDK 2.0 for Microsoft Office
http://www.microsoft.com/downloads/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en
This had the following benefits compared with interop: