Skip to content Skip to sidebar Skip to footer

Writing To File Using Qt. Write Data To Already Written File At Particular Points

I have an html file which is generated when I press a button in qt. I want to send some data at a specific point in the html file when I click senddata button. How can I put the sp

Solution 1:

A HTML file is like a XML file. You can use the QtXml module to insert child nodes at a specific timestamp.

You should start reading http://qt-project.org/doc/qt-4.8/xml-dom-tml.html and look at the examples http://qt-project.org/doc/qt-4.8/examples-xml.html

Once you have grasp the concept, you can ask a more specific question on SO. Good luck.


Post a Comment for "Writing To File Using Qt. Write Data To Already Written File At Particular Points"