QT中操作word文档:
参考如下内容:
C++(Qt) 和 Word、Excel、PDF 交互总结
Qt/Windows桌面版提供了ActiveQt框架,用以为Qt和ActiveX提供完美结合。ActiveQt由两个模块组成:
QAxContainer模块允许我们使用COM对象并且可以在Qt应用程序中嵌入QActive控件。
QAxServer模块允许我们导出使用Qt编写的自定义的COM对象和Active控件。
在这里,我们使用了QAxContainer模块,所以在.pro中,需要使用下面这一项来链接这个QAxContainer模块:CONFIG+=qaxcontainer(注意:在QT5.3中使用的是:QT += widgets gui axcontainer)。
在头文件中包含QAxWidget和QAxObject。
新建一个word文档模板,内容如下:
选中项目下的一个单元格,点击上面菜单栏中的 ”插入书签”,添加如下书签:
//新建一个word应用程序
QAxWidget *word = new QAxWidget("Word.Application");
if(word == NULL)
{
return 0;
}
//并设置为不可见
word->setProperty("Visible", false);
//获取所有的工作文档
QAxObject *documents = word->querySubObject("Documents");
if (documents == NULL)
{
return 0;
}
//以template.dotx为模板新建一个文档
documents->dynamicCall("Add(QString)", QString("D:/template.dotx"));
//获取当前激活的文档
QAxObject *document = word->querySubObject("ActiveDocument");
if (document == NULL)
{
return 0;
}
//获取文档中名字为Customer_Name的标签
QAxObject *pCustomer_Name = document->querySubObject("Bookmarks(QVariant)", QString("Customer_Name"));
//选中标签,将字符sText插入到标签位置
if (!pCustomer_Name->isNull())
{
QString sText = "CJX";//此处为替换内容
pCustomer_Name->dynamicCall("Select(void)"); //选中要选中的区域
pCustomer_Name->querySubObject("Range")->setProperty("Text", sText); //进行替换操作
}
//获取文档中名字为Name的标签
QAxObject *pName = document->querySubObject("Bookmarks(QVariant)", QString("Name"));
//选中标签,将字符sText插入到标签位置
if (!pName->isNull())
{
QString sText = "语文";//此处为替换内容
pName->dynamicCall("Select(void)"); //选中要选中的区域
pName->querySubObject("Range")->setProperty("Text", sText); //进行替换操作
}
//获取文档中名字为Number的标签
QAxObject *pNumber = document->querySubObject("Bookmarks(QVariant)", QString("Number"));
//选中标签,将字符sText插入到标签位置
if (!pNumber->isNull())
{
QString sText = "100";//此处为替换内容
pNumber->dynamicCall("Select(void)"); //选中要选中的区域
pNumber->querySubObject("Range")->setProperty("Text", sText); //进行替换操作
}
//将文件保存为doc,同样可以生成docx文档
QString pathsave = QApplication::applicationDirPath()+ "/template.docx";
document->dynamicCall("SaveAs(const QString&))", QDir::toNativeSeparators(pathsave));
document->dynamicCall("Close (boolean)", false);
word->dynamicCall("Quit()");
delete word;
最后附上测试文档链接:
https://download.csdn.net/download/cao_jie_xin/88753710