gpt4 book ai didi

c++ - 向现有 XML 文档添加节点

转载 作者:太空宇宙 更新时间:2023-11-04 14:26:16 26 4
gpt4 key购买 nike

我正在使用 QT Framework (v. 4.7) 编写一个用 C++ 编写的小程序。

我想要完成的任务是打开一个现有的 xml 文档,在其结构中添加一个节点并将文档保存到我之前读取的文件中。我已经尝试过使用类似的东西:

QFile xmlIn(AFileName);
QDomDocument doc("report_1");
if (xmlIn.open(QIODevice::ReadOnly)) {
if (doc.setContent(&xmlIn)) {
QDomElement docElem = doc.documentElement();

QDomNode n = docElem.firstChild();
// Do something with the element here
n = n.nextSibling();
}
}
// Code for saving the edited QDomDocument comes here

但我有一种强烈的感觉,我在这里监督一个重要的部分,因为这似乎是一项非常普遍的任务,通常 QT Lib 应该提供人们想要的一切:D

请赐教:)

最佳答案

使用“QXmlStreamWriter”...

QXmlStreamWriter    lStreamWriter;

if(lProjectFile.open(QIODevice::WriteOnly|QFile::Text))
{
lStreamWriter.setDevice(&lProjectFile);
lStreamWriter.writeStartDocument();
lStreamWriter.writeStartElement("element");
lStreamWriter.writeAttribute("attribute","value");
lStreamWriter.writeEndElement();
lStreamWriter.writeEndDocument();
lProjectFile.close();
}

关于c++ - 向现有 XML 文档添加节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3779200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com