QT 使用XML保存操作记录

文章目录

  • 1 实现程序保存操作记录的思路
  • 2 XML文档基本结构
  • 3 QDomDocument实现XML读写
    • 3.1 QDomDocument实现生成XML文件
    • 3.2 QDomDocument实现读取XML文件
  • 4 QXmlStreamWriter实现读写
    • 4.1 QXmlStreamWriter实现生成XML
    • 4.2 QXmlStreamWriter实现读取XML

1 实现程序保存操作记录的思路

思路来源: 由于在一些绘图工具中,有些将操作的历史记录,缓存的操作配置保存在了json文件,也有的保存到了xml文件中,如下图所示。经过个人的对比发现xml的文件结构简单、文件的可读性强,节点和内容项之间关系层次清晰,能够实现简单、快速、清晰的内容缓存,非常适合做复杂数据类型的操作记录、工程操作文件记录、配置文件工具。

  • json 示例(来自一个友商的算法标注工具)
{"version": "4.5.6","flags": {},"shapes": [{"description": null,"mask": null,"label": "7","points": [[574.5679012345677,630.8641975308642],[701.7283950617282,0.0],[822.7160493827159,193.82716049382702],[1091.8518518518517,169.1358024691358]],"group_id": null,"shape_type": "polygon","flags": {}},{"description": null,"mask": null,"label": "7","points": [[970.5472636815921,377.96019900497504],[763.2246176524784,204.6395798783858],[689.9502487562188,457.0646766169153],[689.9502487562188,639.1542288557212],[882.4875621890546,636.1691542288554],[1222.7860696517412,583.9303482587063]],"group_id": null,"shape_type": "polygon","flags": {}},{"description": null,"mask": null,"label": "7","points": [[536.8694885361556,394.21340388007053],[596.1287477954147,430.01587301587324]],"group_id": null,"shape_type": "circle","flags": {}}],"imagePath": "微信图片_20231027144505.png","imageData": null,"imageHeight": 1080,"imageWidth": 1920
}
  • xml示例 (qdraw)
    在这里插入图片描述
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qdraw>
<canvas width="800" height="600"><polyline rotate="0" x="469.004" y="326.484" z="0" width="394" height="289"><point x="-88.0041" y="20.5161"/><point x="76.9959" y="144.516"/><point x="196.996" y="65.5161"/><point x="150.996" y="-144.484"/><point x="-24.0041" y="-59.4839"/><point x="-163.004" y="-63.4839"/><point x="-197.004" y="53.5161"/><point x="-116.004" y="56.5161"/><point x="-150.004" y="11.5161"/></polyline><polyline rotate="0" x="164.945" y="321.008" z="0" width="218" height="134"><point x="-71.9446" y="26.9924"/><point x="27.0554" y="66.9924"/><point x="109.055" y="8.99239"/><point x="-44.9446" y="-67.0076"/><point x="-108.945" y="17.9924"/><point x="-70.9446" y="25.9924"/></polyline><ellipse startAngle="40" spanAngle="400" rotate="0" x="155" y="125.5" z="0" width="174" height="125"/><roundrect rx="0.1" ry="0.333333" rotate="0" x="357.5" y="461" z="0" width="141" height="108"/><rect rotate="0" x="104" y="488.5" z="0" width="152" height="163"/>
</canvas>

2 XML文档基本结构

在这里插入图片描述

3 QDomDocument实现XML读写

原理说明: 和json文件处理发方式相同。根据节点、子节点、内容项的关系生成、加载XML文件的内容。
方案缺点: 生成的xml文档中的内容项的顺序是随机的,如下图所示。需要添加随机方法处理,参见文章Qt中使用QDomDocument生成XML文件元素属性随机乱序解决办法 、解决QDomDocument的setattribute乱序,这样能保证每行顺序都是一样的,但是也和自己生成顺序不同。该方法逐渐被淘汰,请参见下文,方法2QXmlStreamWriter实现。

<!-->自己期望的结果<!-->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE algoConfig>
<baseConfig><algolist><algo algId="101001" algName="未戴安全帽" serverType="图片服务" depModel1="1030" depLable1="NO_HELMET" depModel2="" depLable2="" depModel3="" depLable3=""/><algo algId="101002" algName="未穿长袖" serverType="图片服务" depModel1="1030" depLable1="PERSON" depModel2="" depLable2="" depModel3="" depLable3=""/>
</algolist><modelMap><model modelName="1303" reName="2303"/></modelMap>
</baseConfig>
<!-->生成的结果<!-->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE algoConfig>
<baseConfig><algolist><algo serverType="图片服务" algName="未戴安全帽" algId="101001"  depModel1="1030" depLable1="NO_HELMET" depModel2="" depLable2="" depModel3="" depLable3=""/><algo serverType="图片服务" algName="未穿长袖" algId="101002"   depModel1="1030" depLable1="PERSON" depModel2="" depLable2="" depModel3="" depLable3=""/>
</algolist><modelMap><model modelName="1303" reName="2303"/></modelMap>
</baseConfig>

3.1 QDomDocument实现生成XML文件

方法说明: 采用QDomDocument实现,方案传统优缺点。

#include <QDomDocument>
#include <QFile>
#include <QTextStream>// Method to generate XML file
void generateXMLFile() {QDomDocument document;// Making the root elementQDomElement root = document.createElement("baseConfig");// Making elements of algolistQDomElement algolist = document.createElement("algolist");QDomElement algo1 = document.createElement("algo");algo1.setAttribute("algId", "101001");algo1.setAttribute("algName", "未戴安全帽");algo1.setAttribute("serverType", "图片服务");algo1.setAttribute("depModel1", "1030");algo1.setAttribute("depLable1", "NO_HELMET");algolist.appendChild(algo1);QDomElement algo2 = document.createElement("algo");algo2.setAttribute("algId", "101002");algo2.setAttribute("algName", "未穿长袖");algo2.setAttribute("serverType", "图片服务");algo2.setAttribute("depModel1", "1030");algo2.setAttribute("depLable1", "PERSON");algolist.appendChild(algo2);root.appendChild(algolist);// Making elements of modelMapQDomElement modelMap = document.createElement("modelMap");QDomElement model = document.createElement("model");model.setAttribute("modelName", "1303");model.setAttribute("reName", "2303");modelMap.appendChild(model);root.appendChild(modelMap);document.appendChild(root);// Writing to a fileQFile file("Config.xml");if(!file.open(QIODevice::WriteOnly | QIODevice::Text)) {qDebug() << "Failed to open file for writing.";return;} else {QTextStream stream(&file);stream << document.toString();file.close();qDebug() << "File written.";}
}

3.2 QDomDocument实现读取XML文件

#include <QDomDocument>
void loadXMLFile() {QDomDocument document;QFile file("Config.xml");if(!file.open(QIODevice::ReadOnly | QIODevice::Text)) {qDebug() << "Failed to open file for reading.";return;} else {if(!document.setContent(&file)) {qDebug() << "Failed to load document.";return;}file.close();}QDomElement root = document.firstChildElement();QDomNodeList algos = root.firstChildElement("algolist").elementsByTagName("algo");for(int i = 0; i < algos.count(); i++) {QDomNode algoNode = algos.at(i);if(algoNode.isElement()) {QDomElement algo = algoNode.toElement();qDebug() << "Algo ID: " << algo.attribute("algId");qDebug() << "Algo Name: " << algo.attribute("algName");}}QDomNodeList models = root.firstChildElement("modelMap").elementsByTagName("model");for(int i = 0; i < models.count(); i++) {QDomNode modelNode = models.at(i);if(modelNode.isElement()) {QDomElement model = modelNode.toElement();qDebug() << "Model Name: " << model.attribute("modelName");qDebug() << "Renamed as: " << model.attribute("reName");}}
}

4 QXmlStreamWriter实现读写

  • 使用QXmlStreamWriter方法,读写超级简单,实现容易快速。

4.1 QXmlStreamWriter实现生成XML

#include <QXmlStreamReader>
void genConfForm::genXmlFile()
{QFile file("conf.xml");if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {qDebug() << "Failed to open file for writing.";return;}QXmlStreamWriter xmlWriter(&file);xmlWriter.setAutoFormatting(true);xmlWriter.writeStartDocument();xmlWriter.writeDTD("<!DOCTYPE algoConfig>");xmlWriter.writeStartElement("baseConfig");xmlWriter.writeStartElement("algolist");int rows = ui->tableView_gc->model()->rowCount();for(int r = 0; r < rows; r++){/*|0算法ID|1算法名称|2服务类型|3依赖模型1|4依赖label1|5依赖模型2|6依赖label2|7依赖模型3|8依赖label3|*/QString algId = ui->tableView_gc->model()->index(r,0).data().toString();QString algName = ui->tableView_gc->model()->index(r,1).data().toString();QString serverType = ui->tableView_gc->model()->index(r,2).data().toString();QString depModel1 = ui->tableView_gc->model()->index(r,3).data().toString();QString depLabel1 = ui->tableView_gc->model()->index(r,4).data().toString();QString depModel2 = ui->tableView_gc->model()->index(r,5).data().toString();QString depLabel2 = ui->tableView_gc->model()->index(r,6).data().toString();QString depModel3 = ui->tableView_gc->model()->index(r,7).data().toString();QString depLabel3 = ui->tableView_gc->model()->index(r,8).data().toString();xmlWriter.writeEmptyElement("algo");xmlWriter.writeAttribute("algId", algId);xmlWriter.writeAttribute("algName", algName);xmlWriter.writeAttribute("serverType", serverType);xmlWriter.writeAttribute("depModel1", depModel1);xmlWriter.writeAttribute("depLable1", depLabel1);xmlWriter.writeAttribute("depModel2", depModel2);xmlWriter.writeAttribute("depLable2", depLabel2);xmlWriter.writeAttribute("depModel3", depModel3);xmlWriter.writeAttribute("depLable3", depLabel3);}xmlWriter.writeEndElement();//algolistxmlWriter.writeStartElement("modelMap");for(auto& model:m_modelRename){//第一次修改后的值,第二次修改前的值auto& modName = model.first;auto& reName = model.second;xmlWriter.writeEmptyElement("model");xmlWriter.writeAttribute("modelName", modName);xmlWriter.writeAttribute("reName", reName);}xmlWriter.writeEndElement();//modelMapxmlWriter.writeEndElement(); // baseConfigxmlWriter.writeEndDocument();file.close();qDebug() << "XML file generated successfully.";
}

4.2 QXmlStreamWriter实现读取XML

#include <QXmlStreamReader>
struct DepAllModelInfo{QString m_model1;QString m_label1;QString m_model2;QString m_label2;QString m_model3;QString m_label3;
};
using depModel = std::vector<DepModelInfo>;
struct algInfo{QString m_alg_name;QString m_server_type;DepAllModelInfo m_dep_model;
};
using algFullCapacity = std::map<QString,algInfo>;
/*以上是读取config.xml文件结构在程序中的数据结构*/
void genConfForm::loadXmlFile()
{algFullCapacity afc;QFile file("config.xml");if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {qDebug() << "Failed to open file for reading.";return;}QXmlStreamReader xmlReader(&file);while (!xmlReader.atEnd() && !xmlReader.hasError()) {// Read next elementQXmlStreamReader::TokenType token = xmlReader.readNext();// If token is just StartDocument, we'll go to nextif (token == QXmlStreamReader::StartDocument) {continue;}// If token is StartElement - read itif (token == QXmlStreamReader::StartElement){if (xmlReader.name() == "algo"){DepAllModelInfo dam;QXmlStreamAttributes attributes = xmlReader.attributes();QString algId = attributes.value("algId").toString();QString algName = attributes.value("algName").toString();QString serverType = attributes.value("serverType").toString();dam.m_model1 = attributes.value("depModel1").toString();dam.m_label1 = attributes.value("depLable1").toString();dam.m_model2 = attributes.value("depModel2").toString();dam.m_label2 = attributes.value("depLable2").toString();dam.m_model3 = attributes.value("depModel3").toString();dam.m_label3 = attributes.value("depLable3").toString();if(!algId.isEmpty() && !algName.isEmpty()){afc.insert(std::pair<QString,algInfo>(algId, {algName,serverType,dam}));}}if (xmlReader.name() == "model"){QXmlStreamAttributes attributes = xmlReader.attributes();QString dbModelName = attributes.value("modelName").toString();QString modifyName = attributes.value("reName").toString();m_modelRename.insert(std::pair<QString,QString>(dbModelName,modifyName));}}}if(!afc.empty())slotAlgInfo(afc);if (xmlReader.hasError()) {qDebug() << "XML error: " << xmlReader.errorString();}file.close();
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/439577.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Android悬浮窗的实现

最近想做一个悬浮窗秒表的功能&#xff0c;所以看下悬浮窗具体的实现步骤 1、初识WindowManager 实现悬浮窗主要用到的是WindowManager SystemService(Context.WINDOW_SERVICE) public interface WindowManager extends ViewManager {... }WindowManager是接口类&#xff0c…

云计算底层技术、磁盘技术揭秘虚拟化管理、公有云概述

查看本机是否具备虚拟化支持 硬件辅助虚拟化 处理器里打开 虚拟化Inter VT-x/EPT 或AMD-V 构建虚拟化平台工具软件包 yum 与 dnf Yum和DNF都是用于管理Linux系统中的软件包的工具&#xff0c;但它们在许多方面存在一些差异。以下是一些可能的区别&#xff1a; 依赖解…

TensorFlow2实战-系列教程7:TFRecords数据源制作1

&#x1f9e1;&#x1f49b;&#x1f49a;TensorFlow2实战-系列教程 总目录 有任何问题欢迎在下面留言 本篇文章的代码运行界面均在Jupyter Notebook中进行 本篇文章配套的代码资源已经上传 1、TFRecords 在训练过程中&#xff0c;基本都是使用GPU来计算&#xff0c;但是取一个…

匿名管道和命名管道

管道是进程通信的一种方式。&#xff08;进程通信需要让不同进程看到同一份资源&#xff09; 管道分为匿名管道和命名管道两种。 管道只允许单向通信。 一.匿名管道 #include<iostream> #include <unistd.h> #include<cassert> #include<cstring> #i…

小白水平理解面试经典题目LeetCode 455 Assign Cookies【Java实现】

455 分配cookies 小白渣翻译&#xff1a; 假设你是一位很棒的父母&#xff0c;想给你的孩子一些饼干。但是&#xff0c;你最多应该给每个孩子一块饼干。 每个孩子 i 都有一个贪婪因子 g[i] &#xff0c;这是孩子满意的 cookie 的最小大小&#xff1b;每个 cookie j 都有一个…

SOME/IP SD 协议介绍(三)服务发现消息

服务发现消息 使用先前指定的头部格式&#xff0c;可以构建不同的条目和由一个或多个条目组成的消息。具体的条目和它们的头部布局在下面的章节中进行解释。 对于所有的条目&#xff0c;应满足以下条件&#xff1a; • Index First Option Run、Index Second Option Run、Nu…

260:vue+openlayers 通过webgl方式加载矢量图层

第260个 点击查看专栏目录 本示例介绍如何在vue+openlayers中通过webgl方式加载矢量图层。在做这个示例的时候,采用vite的方式而非webpack的方式。这里的基础设置需要改变一下。 ol的版本7.5.2或者更高。 直接复制下面的 vue+openlayers源代码,操作2分钟即可运行实现效果 文…

Git安装,Git镜像,Git已安装但无法使用解决经验

git下载地址&#xff1a; Git - 下载 (git-scm.com) <-git官方资源 Git for Windows (github.com) <-github资源 CNPM Binaries Mirror (npmmirror.com) <-阿里镜像&#xff08;推荐&#xff0c;镜…

防御保护笔记02

防火墙 防火墙的主要职责在于&#xff1a;控制和防护 ---- 安全策略 --- 防火墙可以根据安全策略来抓取流量 防火墙分类 按物理特性划分 软件防火墙 硬件防火墙 按性能划分 百兆级防火墙 吞吐量&#xff1a;指对网络、设备、端口、虚电路或其他设施&#xff0c;单位时间内成…

数学公式OCR识别php 对接mathpix api 使用公式编译器

数学公式OCR识别php 对接mathpix api 一、注册账号官网网址&#xff1a;https://mathpix.com 二、该产品支持多端使用注意说明&#xff08;每月10次&#xff09; 三、api 对接第一步创建create keyphp对接api这里先封装两个请求函数&#xff0c;get 和post &#xff0c;通过官方…

Python 数据分析实战——社交游戏的用户流失?酒卷隆治_案例2

# 什么样的顾客会选择离开 # 数据集 DAU : 每天至少来访问一次的用户数据 数据内容 数据类型 字段名 访问时间 string&#xff08;字符串&#xff09; log_data 应用名称 string&#xff08;字符串&#xff09; app_name 用户 ID int&#xff08;数值&#xff09; user_id…

1_Matlab基本操作

文章目录 工作环境操作界面运行命令窗口使用历史窗口当前目录浏览器工作空间浏览器帮助系统 工作环境 操作界面 命令窗口&#xff1a;用户进行操作的主要窗口。可以输入各种MATLAB的命令。函数和表达式。同时操作的运算结构也会在该窗口出现。历史命令窗口&#xff1a;记录用户…