Qt开发:DOM解析xml实现读、写、增、删、改_qt qdomdocument删除所有节点(1)

收集整理了一份《2024年最新物联网嵌入式全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升的朋友。
img
img

如果你需要这些资料,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

QDomDocument doc;
if(!doc.setContent(&file))
{
    file.close();
    return;
}
file.close();

QDomElement root=doc.documentElement(); //返回根节点
qDebug()<<root.nodeName();
QDomNode node=root.firstChild(); //获得第一个子节点
while(!node.isNull())  //如果节点不空
{
    if(node.isElement()) //如果节点是元素
    {
        QDomElement e=node.toElement(); //转换为元素,注意元素和节点是两个数据结构,其实差不多
        qDebug()<<e.tagName()<<" "<<e.attribute("id")<<" "<<e.attribute("time"); //打印键值对,tagName和nodeName是一个东西
        QDomNodeList list=e.childNodes();
        for(int i=0;i<list.count();i++) //遍历子元素,count和size都可以用,可用于标签数计数
        {
            QDomNode n=list.at(i);
            if(node.isElement())
                qDebug()<<n.nodeName()<<":"<<n.toElement().text();
        }
    }
    node=node.nextSibling(); //下一个兄弟节点,nextSiblingElement()是下一个兄弟元素,都差不多
}

}

//增加xml内容
void AddXml()
{
//打开文件
QFile file(“test.xml”); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return;

//增加一个一级子节点以及元素
QDomDocument doc;
if(!doc.setContent(&file))
{
    file.close();
    return;
}
file.close();

QDomElement root=doc.documentElement();
QDomElement book=doc.createElement("book");
book.setAttribute("id",3);
book.setAttribute("time","1813/1/27");
QDomElement title=doc.createElement("title");
QDomText text;
text=doc.createTextNode("Pride and Prejudice");
title.appendChild(text);
book.appendChild(title);
QDomElement author=doc.createElement("author");
text=doc.createTextNode("Jane Austen");
author.appendChild(text);
book.appendChild(author);
root.appendChild(book);

if(!file.open(QFile::WriteOnly|QFile::Truncate)) //先读进来,再重写,如果不用truncate就是在后面追加内容,就无效了
    return;
//输出到文件
QTextStream out_stream(&file);
doc.save(out_stream,4); //缩进4格
file.close();

}

//删减xml内容
void RemoveXml()
{
//打开文件
QFile file(“test.xml”); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return;

//删除一个一级子节点及其元素,外层节点删除内层节点于此相同
QDomDocument doc;
if(!doc.setContent(&file))
{
    file.close();
    return;
}
file.close();  //一定要记得关掉啊,不然无法完成操作

QDomElement root=doc.documentElement();
QDomNodeList list=doc.elementsByTagName("book"); //由标签名定位
for(int i=0;i<list.count();i++)
{
    QDomElement e=list.at(i).toElement();
    if(e.attribute("time")=="2007/5/25")  //以属性名定位,类似于hash的方式,warning:这里仅仅删除一个节点,其实可以加个break
        root.removeChild(list.at(i));
}

if(!file.open(QFile::WriteOnly|QFile::Truncate))
    return;
//输出到文件
QTextStream out_stream(&file);
doc.save(out_stream,4); //缩进4格
file.close();

}

//更新xml内容
void UpdateXml()
{
//打开文件
QFile file(“test.xml”); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return;

//更新一个标签项,如果知道xml的结构,直接定位到那个标签上定点更新
//或者用遍历的方法去匹配tagname或者attribut,value来更新
QDomDocument doc;
if(!doc.setContent(&file))
{
    file.close();
    return;
}
file.close();

QDomElement root=doc.documentElement();
QDomNodeList list=root.elementsByTagName("book");
QDomNode node=list.at(list.size()-1).firstChild(); //定位到第三个一级子节点的子元素
QDomNode oldnode=node.firstChild(); //标签之间的内容作为节点的子节点出现,当前是Pride and Projudice
node.firstChild().setNodeValue("Emma");
QDomNode newnode=node.firstChild();
node.replaceChild(newnode,oldnode);

if(!file.open(QFile::WriteOnly|QFile::Truncate))
    return;
//输出到文件
QTextStream out_stream(&file);
doc.save(out_stream,4); //缩进4格
file.close();

}

int main(int argc, char *argv[])
{

qDebug()<<"write xml to file...";
WriteXml();
qDebug()<<"read xml to display...";
ReadXml();
qDebug()<<"add contents to xml...";
AddXml();
qDebug()<<"remove contents from xml...";
RemoveXml();
qDebug()<<"update contents to xml...";
UpdateXml();
return 0;

}


写xml



<?xml version="1.0" encoding="UTF-8"?> C++ primer Stanley Lippman Thinking in Java Bruce Eckel ```

增加内容xml

<?xml version='1.0' encoding='UTF-8'?>
<library>
    <book time="2013/6/13" id="1">
        <title>C++ primer</title>
        <author>Stanley Lippman</author>
    </book>
    <book time="2007/5/25" id="2">
        <title>Thinking in Java</title>
        <author>Bruce Eckel</author>
    </book>
    <book time="1813/1/27" id="3">
        <title>Pride and Prejudice</title>
        <author>Jane Austen</author>
    </book>
</library>

删除内容xml

<?xml version='1.0' encoding='UTF-8'?>
<library>
    <book time="2013/6/13" id="1">
        <title>C++ primer</title>
        <author>Stanley Lippman</author>
    </book>
    <book time="1813/1/27" id="3">
        <title>Pride and Prejudice</title>


**收集整理了一份《2024年最新物联网嵌入式全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升的朋友。**
![img](https://img-blog.csdnimg.cn/img_convert/336c941f5fdea33a2599274f596fee80.png)
![img](https://img-blog.csdnimg.cn/img_convert/3640382ea1e16478fc26cfcf74d2a423.png)

**[如果你需要这些资料,可以戳这里获取](https://bbs.csdn.net/topics/618679757)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人**

**都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

715683070553)]
[外链图片转存中...(img-bEFWBfLS-1715683070554)]

**[如果你需要这些资料,可以戳这里获取](https://bbs.csdn.net/topics/618679757)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人**

**都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值