Editing XML file from Qt
Solved
General and Desktop
-
-
@VJain85
If you want to do your processing via theQXmlStreamReader/Writer
SAX-type parser that is fine. Note however that means you will not be editing the XML "in place"/"in memory", instead you will be reading the file incrementally and outputting the edited XML to a new file as you go along.