在 C++ 中读取 .docx
我正在尝试创建一个程序来读取 .docx 文件并将其内容发布到博客/论坛以供个人使用。 我终于弄清楚如何使用 libcurl 来做(我认为的)是程序中更难的部分。 现在我只需阅读 .docx 文件,但遇到了障碍。 我似乎找不到任何有关如何执行此操作的文档。 有任何想法吗?
I'm trying to create a program that reads a .docx file and posts it content to a blog/forum for personal use. I finally have figured out how to use libcurl to do (what I figured) was the harder part of the program. Now I just have to read the .docx file, but have come under a snag. I can't seem to find any documentation on how to do this. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 Word 来执行此操作。 它对许可有限制。
SO问题从C++创建、打开和打印word文件< /a> 有一些很好的参考。
编辑:
根据这些问题/答案可以解压Open XML文件并直接处理XML文件:
如果您使用 .NET,还有更多 (C#) 问题需要阅读:
The easiest way is to use Word to do this. It has limitations on licensing.
The SO question Creating, opening and printing a word file from C++ has some good references.
Edit:
According to these questions/answers can unzip the Open XML file and process the XML file directly:
If you use .NET there are more (C#) questions to read:
如果您想留在开源世界,OpenOffice 3 应该能够处理 .docx 文件。 有一个项目要实现多种语言的API,我真的不知道它有多完整或复杂。
PHP 中有一个 脚本 可以从.docx 转换为纯文本。 也就是说,如果您不害怕所有文档都是俄语的话)。 这可能是另一种选择(通过系统调用触发 php 脚本并解析文件中的结果)
If you want to stay on the open-source world, OpenOffice 3 should be able to process .docx files. There is a project to implement an API for many languages, I don't really know how complete or complex it is.
There is a script in PHP that can convert from .docx into plain text. That is, if you are not scared that all docs are in russian). That could be another option (triggering the php script with a system call and parsing the results from a file)