既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上物联网嵌入式知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、电子书籍、讲解视频,并且后续会持续更新
QFile file(filename); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return false;
//增加一个一级子节点以及元素
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return false;
}
file.close();
QDomElement root=doc.documentElement();
QDomElement book=doc.createElement(nodename);
QDomElement title=doc.createElement(itemname);
QDomText text;
text=doc.createTextNode(itemvalue);
title.appendChild(text);
book.appendChild(title);
root.appendChild(book);
if(!file.open(QFile::WriteOnly|QFile::Truncate)) //先读进来,再重写,如果不用truncate就是在后面追加内容,就无效了
return false;
//输出到文件
QTextStream out_stream(&file);
doc.save(out_stream,4); //缩进4格
file.close();
return true;
}
移除元素
bool XMLUtil::XmlRemove(QString filename, QString nodename, QString itemname)
{
//打开文件
QFile file(filename); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return false;
//删除一个一级子节点及其元素,外层节点删除内层节点于此相同
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return false;
}
file.close(); //一定要记得关掉啊,不然无法完成操作
QDomElement root=doc.documentElement();
QDomNodeList list=doc.elementsByTagName(nodename); //由标签名定位
for(int i=0;i<list.count();i++)
{
QDomNode node=list.at(i).firstChild();
if(node.nodeName() == itemname) //以属性名定位,类似于hash的方式,warning:这里仅仅删除一个节点,其实可以加个break
root.removeChild(list.at(i));
}
if(!file.open(QFile::WriteOnly|QFile::Truncate))
return false;
//输出到文件
QTextStream out_stream(&file);
doc.save(out_stream,4); //缩进4格
file.close();
return true;
}
更新元素
void XMLUtil::XmlUpdate(QString filename, QString nodename, QString itemname, QString itemvalue)
{
//打开文件
QFile file(filename); //相对路径、绝对路径、资源路径都可以
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(nodename);
for(int i=0;i<list.count();i++)
{
QDomNode node=list.at(i).firstChild();
if(node.nodeName() == itemname)
{
QDomNode oldnode=node.firstChild(); //标签之间的内容作为节点的子节点出现
node.firstChild().setNodeValue(itemvalue);
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();
}
判断元素存在
bool XMLUtil::XmlItemExist(QString filename, QString nodename, QString itemname)
{
//打开文件
QFile file(filename); //相对路径、绝对路径、资源路径都可以
if(!file.open(QFile::ReadOnly))
return false;
//更新一个标签项,如果知道xml的结构,直接定位到那个标签上定点更新
//或者用遍历的方法去匹配tagname或者attribut,value来更新
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return false;
}
file.close();
QDomElement root=doc.documentElement();
QDomNodeList list=root.elementsByTagName(nodename);
for(int i=0;i<list.count();i++)
{
QDomNode node=list.at(i).firstChild();
if(node.nodeName() == itemname)
{
file.close();
return true;
}
}
return false;
}
读取所有元素
此处将XML文档中所有元素读出放入QMap<QString,QString>中返回;
QMap<QString, QString> *XMLUtil::XmlRead(QString filename)
{
//打开或创建文件
QFile file(filename); //相对路径、绝对路径、资源路径都行
if(!file.open(QFile::ReadOnly))
return NULL;
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return NULL;
}
file.close();
QMap<QString,QString>* paramMap = new QMap<QString,QString>();
paramMap->clear();
QDomElement root=doc.documentElement(); //返回根节点
QDomNode node=root.firstChild(); //获得第一个子节点
while(!node.isNull()) //如果节点不空
{
if(node.isElement()) //如果节点是元素
{
QDomElement e=node.toElement(); //转换为元素,注意元素和节点是两个数据结构,其实差不多
QDomNodeList list=e.childNodes();
for(int i=0;i<list.count();i++) //遍历子元素,count和size都可以用,可用于标签数计数
{
QDomNode n=list.at(i);
if(node.isElement())
{
paramMap->insert(n.nodeName(),n.toElement().text());
}
}
}
node=node.nextSibling(); //下一个兄弟节点,nextSiblingElement()是下一个兄弟元素,都差不多
}
file.close();
return paramMap;
}
读取子节点
读取子节点下所有元素,同样将读出的所有元素放入QMap<QString,QString>中返回;
QMap<QString, QString> *XMLUtil::XmlRead(QString filename, QString nodename)
{
//打开或创建文件
QFile file(filename); //相对路径、绝对路径、资源路径都行
if(!file.open(QFile::ReadOnly))
return NULL;
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return NULL;
}
file.close();
QMap<QString,QString>* paramMap = new QMap<QString,QString>();
paramMap->clear();
QDomElement root=doc.documentElement(); //返回根节点
QDomNode node=root.firstChild(); //获得第一个子节点
while(!node.isNull()) //如果节点不空
{
if(node.isElement()) //如果节点是元素
{
QDomElement e=node.toElement(); //转换为元素,注意元素和节点是两个数据结构,其实差不多
if(e.nodeName() == nodename)
{
QDomNodeList list=e.childNodes();
for(int i=0;i<list.count();i++) //遍历子元素,count和size都可以用,可用于标签数计数
{
QDomNode n=list.at(i);
if(node.isElement())
{
paramMap->insert(n.nodeName(),n.toElement().text());
}
}
}
}
node=node.nextSibling(); //下一个兄弟节点,nextSiblingElement()是下一个兄弟元素,都差不多
}
file.close();
return paramMap;
}
读取一个元素的值
读取子节点下一个元素的值,思路是遍历所有节点及子节点,找到要找的元素,然后取出其值;
QString XMLUtil::XmlRead(QString filename, QString nodename, QString itemname)
{
//打开或创建文件
QFile file(filename); //相对路径、绝对路径、资源路径都行
if(!file.open(QFile::ReadOnly))
return “”;
QDomDocument doc;
if(!doc.setContent(&file))
{
file.close();
return “”;
}
file.close();
QDomElement root=doc.documentElement(); //返回根节点
QDomNode node=root.firstChild(); //获得第一个子节点
while(!node.isNull()) //如果节点不空
{
if(node.isElement()) //如果节点是元素
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上物联网嵌入式知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、电子书籍、讲解视频,并且后续会持续更新
if(!doc.setContent(&file))
{
file.close();
return “”;
}
file.close();
QDomElement root=doc.documentElement(); //返回根节点
QDomNode node=root.firstChild(); //获得第一个子节点
while(!node.isNull()) //如果节点不空
{
if(node.isElement()) //如果节点是元素
[外链图片转存中…(img-BggjA7NV-1715651649203)]
[外链图片转存中…(img-UKeRxj5t-1715651649203)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上物联网嵌入式知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、电子书籍、讲解视频,并且后续会持续更新