QT学习之读取xml中信息

背景:

我们每次注册后会生成对应的启动码文件,格式如下,启动码最后要在测试工具使用的进行一个验证,验证通过后模块才能使用。所以我希望每次的xml都放在一个文件夹里,等我选择文件夹后,能提取所有xml中的对应信息;

我的XML格式如下,我需要将里的Pid\AId\SId\ACode等都提取出来,放在表格了;

cpp 复制代码
// 选择xml所在文件夹
void QtWidgetsApplication32::on_selecXmltDir_clicked(){
    m_dirXML = QFileDialog::getExistingDirectory(this, tr("打开XML所在文件夹"), "D:/", QFileDialog::ShowDirsOnly|QFileDialog::DontResolveSymlinks);
    ui.xmlDir->setText("xml文件夹:"+m_dirXML);
}

// 生成excel文件
void QtWidgetsApplication32::on_buildExcelFile_clicked() {
    QDir dir(m_dirXML);
    if (!dir.exists()) {
        qWarning() << "The directory does not exist!";
        return;
    }

    // 文件过滤器,这里设置为获取所有文件和文件夹
    dir.setFilter(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);

    // 将文件和文件夹排序
    dir.setSorting(QDir::Size | QDir::Reversed);

    QString csvName = "ACCode.csv";
    QFile fileCsv(csvName); // 打开csv文件
    if (!fileCsv.open(QIODevice::WriteOnly | QFile::Text))
    {
        outPutMsg(QtDebugMsg, "QtWidgetsApplication32::buildExcelFile invoke end. 打开 1.csv 失败!");
        return;
    }

    QTextStream stream(&fileCsv);
    stream << "PR_PId,PR_AId,PR_SId,PR_ACCode,PR_QueryUrl,PR_OpTime\n"; // 写入

    foreach(QFileInfo fileInfo, dir.entryInfoList()) {
        if (fileInfo.isFile()) {
           // outPutMsg(QtDebugMsg, "file:"+ fileInfo.absoluteFilePath());
            buildExcelFile(fileInfo.absoluteFilePath(), &stream);
        }
        else if (fileInfo.isDir()) {
            outPutMsg(QtDebugMsg, "dir:" + fileInfo.absoluteFilePath());
            // 目录不处理
        }
    }  
    fileCsv.close();
    ui.csvName->setText("csv文件名:"+csvName);
    QMessageBox::information(nullptr, "提示", "生成csv文件成功!");
}

// 生成Excel文件
void QtWidgetsApplication32::buildExcelFile(QString fileNames, QTextStream * pStream) {
    int iRow = 0;
    outPutMsg(QtDebugMsg, "QtWidgetsApplication32::buildExcelFile invoke begin." + fileNames);
    QFile file(fileNames); // 打开xml文件
    if (!file.open(QIODevice::ReadOnly | QFile::Text))
    {
        outPutMsg(QtDebugMsg, "QtWidgetsApplication32::buildExcelFile invoke end. 打开" + fileNames + "失败!");
        return;
    }

    QXmlStreamReader reader(&file);
    QByteArray strACCode;
    while (!reader.atEnd()) {
        QXmlStreamReader::TokenType nType = reader.readNext();
        if (nType == QXmlStreamReader::StartElement) {
            QString tagStr = reader.name().toString();
            qDebug() << reader.name().toString();
            outPutMsg(QtDebugMsg, "tagStr=" + tagStr);
            if (QString::compare(tagStr, QStringLiteral("PR_PId")) == 0){
                QXmlStreamAttributes  Attributes = reader.attributes();
                if (Attributes.hasAttribute("PId")) {
                    // 有属性的是大标签
                    outPutMsg(QtDebugMsg, "PR_PId=" + Attributes.value("PR_PId").toString());
                }
                else { 
                    // 没有属性的是ElementText
                    QString text = reader.readElementText();
                    *pStream << text;
                    *pStream << ",";
                    outPutMsg(QtDebugMsg, "text=" + text);
                }
            }
            else if (QString::compare(tagStr, QStringLiteral("ACCode")) == 0){
            }
            else if(QString::compare(tagStr, QStringLiteral("PR_OpTime")) == 0) {
                QString text = reader.readElementText();
                *pStream << text;
                *pStream << "\n";
                // 最后一个数据 做一个写cvs文件处理
                outPutMsg(QtDebugMsg, "PR_OpTime=" + text);
            }
            else{
                QString text = reader.readElementText();
                *pStream << text;
                *pStream << ",";
                outPutMsg(QtDebugMsg, tagStr+"=" + text);
            }

        }
        else{
            if (reader.isStartDocument()){
                qDebug() << reader.documentVersion().toString();
                qDebug() << reader.documentEncoding().toString();
            }
            if (reader.isComment()) {
            }
        }
    }
    QString filename = QString::fromLatin1(strACCode);
    outPutMsg(QtDebugMsg, filename);
    file.close();
    outPutMsg(QtDebugMsg, "QtWidgetsApplication32::buildExcelFile invoke end.");
}

如上所示,取属性使用QXmlStreamAttributes Attributes = reader.attributes();

取内容使用QString text = reader.readElementText();每次取完就没有了;

我提取的信息是存放在csv文件中的,如下:

QFile fileCsv(csvName); // 打开csv文件

QTextStream stream(&fileCsv);

stream << "PR_PId,PR_AId,PR_SId,PR_ACCode,PR_QueryUrl,PR_OpTime\n"; // 写入

fileCsv.close();

相关推荐
Mephisto.java9 分钟前
【大数据学习 | Spark-Core】Spark提交及运行流程
大数据·学习·spark
PandaCave33 分钟前
vue工程运行、构建、引用环境参数学习记录
javascript·vue.js·学习
yuwinter38 分钟前
鸿蒙HarmonyOS学习笔记(2)
笔记·学习·harmonyos
Bruce小鬼39 分钟前
QT文件基本操作
开发语言·qt
red_redemption1 小时前
自由学习记录(23)
学习·unity·lua·ab包
懷淰メ1 小时前
PyQt飞机大战游戏(附下载地址)
开发语言·python·qt·游戏·pyqt·游戏开发·pyqt5
幽兰的天空1 小时前
默语博主的推荐:探索技术世界的旅程
学习·程序人生·生活·美食·交友·美女·帅哥
沐泽Mu2 小时前
嵌入式学习-C嘎嘎-Day05
开发语言·c++·学习
你可以叫我仔哥呀2 小时前
ElasticSearch学习笔记三:基础操作(一)
笔记·学习·elasticsearch
脸ル粉嘟嘟2 小时前
GitLab使用操作v1.0
学习·gitlab