QXmlStreamWriter находит значение тега и заменяет его другим заданным значением c - PullRequest
0 голосов
/ 13 января 2020

У меня есть xml файлы, которые содержат Engli sh и французские строки в качестве сообщений. Я пытаюсь прочитать указанный элемент c из файла xml и заменить его значение другим заданным значением c.

Пример (в приведенном ниже файле xml): Заменить "Bonjour le monde "with" bonjour le monde à nouveau ".

Есть идеи, как этого добиться, используя QXmlStreamReader и QXmlStreamWriter? Моя программа-пример не работает должным образом. Я использую qt 5.14.0

// xml file: myfile. xml

<?xml version='1.0' encoding='utf-8'?>
<TS language="fr_FR" version="2.1">
<context>
  <name>TRStringFactory</name>
  <message>
      <location filename="test.cpp" line="28" />
      <source>none</source>
      <translation type="unfinished">aucun</translation>
  </message>
  <message>
      <location filename="test.cpp" line="29" />
      <source>hello world</source>
      <translation type="unfinished">Bonjour le monde</translation>
  </message>
</context>
</TS>

1 Ответ

0 голосов
/ 17 января 2020

Ответ: ->

void updateXMLFile(QString fileName)
{
if (fileName != "")
{
QDomDocument document;
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly))
    return;
if (!document.setContent(&file))
{
    file.close();
    return;
}
file.close();

QString in = "aucun";
QString out = "ravi gupta";

QDomElement root = document.documentElement();
QString name = root.tagName();
qDebug()<<"tag name"<<name;
QDomNode fChild = root.firstChild();
while(!fChild.isNull())
{
    QDomElement fElement = fChild.toElement();
    if(!fElement.isNull())
    {
        qDebug()<<"fElement.tagName() : " <<fElement.tagName();

        if(fElement.tagName() == "context" )//Some Dummy tagname)
        {
            QDomNode enabledChecks = fChild.firstChild();
            while(!enabledChecks.isNull())
            {

                QDomElement checkName = enabledChecks.toElement();
                //Some Code

                QDomNode sChild = enabledChecks.firstChild();
                while (!sChild.isNull())
                {
                    QDomElement x = sChild.toElement();

                    qDebug()<<"second child : " <<x.tagName()<<x.text();

                    if(x.text() == in)
                    {
                        // create a new node with a QDomText child
                        QDomElement newNodeTag = document.createElement(QString("translation"));
                        QDomText newNodeText = document.createTextNode(out);
                        newNodeTag.appendChild(newNodeText);

                        checkName.replaceChild(newNodeTag,x);
                        //sChild.removeChild(x);

                        qDebug()<<"matched";
                        // Save content back to the file
                        if (!file.open(QIODevice::Truncate | QIODevice::WriteOnly)) {
                            qDebug("Basically, now we lost content of a file");
                            return;
                        }

                        file.resize(0);
                        QTextStream stream;
                        stream.setDevice(&file);
                        document.save(stream, 4);

                        file.close();
                    }

                    sChild = sChild.nextSibling();
                }


                enabledChecks = enabledChecks.nextSibling();
            }
        }

    }
    fChild = fChild.nextSibling();
}
}
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...