如何使用open xml sdk 2.0访问以前版本的office文件
我想 Office 文件(MS Office 2007 之前的版本)无法使用 open xml sdk2.0 访问,或者无法使用 open xml 格式以编程方式访问。
那么有什么办法可以处理这些旧版本的文件,或者我可以查看这些文件的 xml 内容吗? 还是 open xml sdk 不是为此目的而设计的
I suppose office files(prior MS office 2007) cannot be accessed using open xml sdk2.0 or if they cannot be programmatically accessed using the open xml format.
so is there any way to work or these older version files or can i view the xml content of these files.
or is it that open xml sdk isnt designed for that purpose
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看类似问题的答案< /a> 我刚开始学习这个SDK的时候就问了。
See the answer to a similar question I asked when I just started learning this SDK.
不,但是开源项目 POI 为大多数旧格式提供了 API。警告 POI 有一点(不是很多)错误,没有完全实现规范,并且支持 catch as catch can (即它是开源的)。
No but the open source project POI provides an API to most of the old formats. Warning POI is a bit (not a lot) buggy, does not fully implement the specs, and support is catch as catch can (ie it's open source).
您可以使用 Office 文件转换器将其转换为开放的 xml 格式并开始处理。
参见这里:
http://technet.microsoft.com/en- us/library/cc179019(v=office.14).aspx
我正在将其用于我的应用程序。这对我有用。
希望这有帮助。
You can use Office File converters to convert to open xml formats and start processing it.
See here:
http://technet.microsoft.com/en-us/library/cc179019(v=office.14).aspx
I'm using this for my application. This works for me.
Hope this helps.