DOM解析xml实现读、写、增、删、改
qt提供了三种方式解析xml,不过如果想实现对xml文件进行增、删、改等操作,还是DOM方式最方便。
项目配置
pro文件里面添加QT+=xml
include <QtXml>,也可以include <QDomDocument>
pro文件:
- QT += core xml
- QT -= gui
- TARGET = xmltest
- CONFIG += console
- CONFIG -= app_bundle
- TEMPLATE = app
- SOURCES += main.cpp
代码
main.cpp
- #include <QCoreApplication>
- #include <QtXml> //也可以include <QDomDocument>
- //写xml
- void WriteXml()
- {
- //打开或创建文件
- QFile file("test.xml"); //相对路径、绝对路径、资源路径都可以
- if(!file.open(QFile::WriteOnly|QFile::Truncate)) //可以用QIODevice,Truncate表示清空原来的内容
- return;
- QDomDocument doc;
- //写入xml头部
- QDomProcessingInstruction instruction; //添加处理命令
- instruction=doc.createProcessingInstruction("xml","version=\"1.0\" encoding=\"UTF-8\"");
- doc.appendChild(instruction);
- //添加根节点
- QDomElement root=doc.createElement("library");
- doc.appendChild(root);
- //添加第一个子节点及其子元素
- QDomElement book=doc.createElement("book");
- book.setAttribute("id",1); //方式一:创建属性 其中键值对的值可以是各种类型
- QDomAttr time=doc.createAttribute("time"); //方式二:创建属性 值必须是字符串
- time.setValue("2013/6/13");
- book.setAttributeNode(time);
- QDomElement title=doc.createElement("title"); //创建子元素
- QDomText text; //设置括号标签中间的值
- text=doc.createTextNode("C++ primer");
- book.appendChild(title);
- title.appendChild(text);
- QDomElement author=doc.createElement("author"); //创建子元素
- text=doc.createTextNode("Stanley Lippman");
- author.appendChild(text);
- book.appendChild(author);
- root.appendChild(book);
- //添加第二个子节点及其子元素,部分变量只需重新赋值
- book=doc.createElement("book");
- book.setAttribute("id",2);
- time=doc.createAttribute("time");
- time.setValue("2007/5/25");
- book.setAttributeNode(time);
- title=doc.createElement("title");
- text=doc.createTextNode("Thinking in Java");
- book.appendChild(title);
- title.appendChild(text);
- author=doc.createElement("author");
- text=doc.createTextNode("Bruce Eckel");
- author.appendChild(text);
- book.appendChild(author);
- root.appendChild(book);
- //输出到文件
- QTextStream out_stream(&file);
- doc.save(out_stream,4); //缩进4格
- file.close();
- }
- //读xml
- void ReadXml()
- {
- //打开或创建文件
- 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(); //返回根节点
- 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的方式
- 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"?>
- <library>
- <book id="1" time="2013/6/13">
- <title>C++ primer</title>
- <author>Stanley Lippman</author>
- </book>
- <book id="2" time="2007/5/25">
- <title>Thinking in Java</title>
- <author>Bruce Eckel</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="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>
- <author>Jane Austen</author>
- </book>
- </library>
更新xml
- <?xml version='1.0' encoding='UTF-8'?>
- <library>
- <book id="1" time="2013/6/13">
- <title>C++ primer</title>
- <author>Stanley Lippman</author>
- </book>
- <book id="3" time="1813/1/27">
- <title>Emma</title>
- <author>Jane Austen</author>
- </book>
- </library>
http://blog.csdn.net/u012234115/article/details/43203001
DOM解析xml实现读、写、增、删、改的更多相关文章
- xml--通过DOM解析XML
此文章通过3个例子表示DOM方式解析XML的用法. 通过DOM解析XML必须要写的3行代码. step 1: 获得dom解析器工厂(工作的作用是用于创建具体的解析器) step 2:获得具体的dom解 ...
- 用dom4j解析xml文件并执行增删改查操作
转自:https://www.aliyun.com/jiaocheng/1339446.html xml文件: <?xml version="1.0" encoding=&q ...
- xml语法、DTD约束xml、Schema约束xml、DOM解析xml
今日大纲 1.什么是xml.xml的作用 2.xml的语法 3.DTD约束xml 4.Schema约束xml 5.DOM解析xml 1.什么是xml.xml的作用 1.1.xml介绍 在前面学习的ht ...
- Android之DOM解析XML
一.DOM解析方法介绍 DOM是基于树形结构的节点或信息片段的集合,允许开发人员使用DOM API遍历XML树,检索所需数据.分析该结构通常需要加载整个文档和构造树形结构,然后才可以检索和更新节点信息 ...
- JAVA中使用DOM解析XML文件
XML是一种方便快捷高效的数据保存传输的格式,在JSON广泛使用之前,XML是服务器和客户端之间数据传输的主要方式.因此,需要使用各种方式,解析服务器传送过来的信息,以供使用者查看. JAVA作为一种 ...
- 简单谈谈dom解析xml和html
前言 文件对象模型(Document Object Model,简称DOM),是W3C组织推荐的处理可扩展标志语言的标准编程接口.html,xml都是基于这个模型构造的.这也是一个W3C推出的标准.j ...
- Java从零开始学四十二(DOM解析XML)
一.DOM解析XML xml文件 favorite.xml <?xml version="1.0" encoding="UTF-8" standalone ...
- python 解析XML python模块xml.dom解析xml实例代码
分享下python中使用模块xml.dom解析xml文件的实例代码,学习下python解析xml文件的方法. 原文转自:http://www.jbxue.com/article/16587.html ...
- Java解析XML文档(简单实例)——dom解析xml
一.前言 用Java解析XML文档,最常用的有两种方法:使用基于事件的XML简单API(Simple API for XML)称为SAX和基于树和节点的文档对象模型(Document Object ...
随机推荐
- MRTG Monitoring with ESXi Hosted Guest Return ‘interface is commented * has no ifSpeed property’
MRTG Monitoring with ESXi Hosted Guest Return ‘interface is commented * has no ifSpeed property’ Rec ...
- 小强的HTML5移动开发之路(43)——JqueryMobile页眉、工具栏和标签栏导航
一.页眉 1.添加页眉和页脚 <div data-role="header"> <h1>第 1 页</h1> </div> < ...
- JAVA基本数据类型及其转换
Java语言是一种强类型语言.这意味着每个变量都必须有一个声明好的类型.Java语言提供了八种基本类型.六种数字类型(四个整数型,两个浮点型),一种字符类型,还有一种布尔型.Java另外还提供大数字对 ...
- 百度消息推送SDK探究(并附上最简推送Demo)
上一篇<百度消息推送REST API探究>中了解了如何使用REST API推送消息,这一篇我们来看一下百度消息推送为我们提供的SDK. 帮助文档:http://developer.baid ...
- 学习JS的这些日子——十二月总结
事实上非常想早就发表这篇十二月份的总结了,可是一直拖拖拉拉没有完毕.一直在想2015年都过去了,该不该再去 写这一篇2015年最后一个月的总结.还有就是2015年的年终总结能否够取代十二月的总结,后来 ...
- matlab 机器学习相关函数、api
matlab 对数据集的默认组织方式是,X∈Rd×N d:行数,表示特征向量的长度: N:列数,表示样本的数目: 1. 模型.预测.mse % 加载 matlab 内置数据到内存 X = abalon ...
- NVIDIA 显卡信息(CUDA信息的查看)
1. nvidia-smi 查看显卡信息 nvidia-smi 指的是 NVIDIA System Management Interface: 在安装完成 NVIDIA 显卡驱动之后,对于 windo ...
- URLDecoder和URLEncoder的使用总结
其实,这两个类的使用并不复杂,URLDecoder和URLEncoder它的作用主要是用于普通字符串和application/x-www-form-rulencoded MIME字符串之间的转换,一般 ...
- jeesuite分布式框架环境搭建
一.简述 这是菜鸟走向开源的第一步.开源项目jeesuite:http://git.oschina.net/vakinge/jeesuite-libs jeesuite是托管在码云上的开源项目,是一个 ...
- POJ - 1466 Girls and Boys 二分图+最大独立集
标题效果:有着n学生,有一些同学之间的特殊关系.. .为了一探究竟m学生.要求m免两者之间的学生有没有这样的特殊关系 解决问题的思路:二分图的问题,殊关系是对称的.所以能够将两个点集都设置为n个点.求 ...