C++用于读取在“Open Office Calc”中创建的文档的库
我在“Open Office Calc”中创建了文件,我需要将其加载到我的 C++ 程序中以生成一些为此设计文件编写的游戏特定代码。我所需要的只是电子表格名称、字段数据和公式结果。
有办法这样做吗?
谢谢。
I have the file created within "Open Office Calc" which I need to load into my C++ program to generate some game-specific code for which this design file was written. All I need is spreadsheets names, fields data and formulas results.
Is there a way to do so?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有 OpenOffice 文件都是 zip 存档,其内容位于公开指定的 XML 文件中。可能需要一些工作,但借助大多数可用的 XML 解析器来获取所需的数据并非不可能。
All OpenOffice files are zip-archives, with the contents in publicly specified XML files. Might be some work but would not be impossible to get the data you need with the help of most available XML-parsers.