Reading .docx in C++

坚强是说给别人听的谎言 提交于 2019-12-01 04:32:07

问题


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?


回答1:


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:

  • How can I read a Word 2007 .docx file?

If you use .NET there are more (C#) questions to read:

  • How to grab text from word (docx) document in C#?
  • How to load MS Word document in C# (.NET)?
  • How can I programatically use C# to append multiple DOCX files together?



回答2:


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)



来源:https://stackoverflow.com/questions/1161295/reading-docx-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!