Supprimer Un élément dans un fichier xml avec QT

Supprimer Un élément dans un fichier xml avec QT - C++ - Programmation

Marsh Posté le 08-03-2005 à 17:06:22    

j'aimerais supprimer SR32iIp.
j'utilise la librairie qdom.h
voici ci joint mon fichier xml
<configuration>-
<configSysteme>
<langue>Français</langue>
<modeServeur>Actif</modeServeur>
</configSysteme>-
<SR32i>
<SR32iIp>135.123.122.2</SR32iIp>
<SR32iNom>marcel</SR32iNom>
</SR32i>-
<DC11>
<DC11Adr>2</DC11Adr>
<DC11Nom>joel</DC11Nom>
</DC11>  
 :hello:  :bounce:  :bounce:

Reply

Marsh Posté le 08-03-2005 à 17:06:22   

Reply

Marsh Posté le 08-03-2005 à 17:49:34    

Essaye un truc du genre

Code :
  1. QDomNodeList list = Doc.elementsByTagName( "SR32iIp" );
  2. for ( uint i = 0; i < list.count(); ++i )
  3. {
  4.     list.item( i ).clear();
  5. }


---------------
FAQ fclc++ - FAQ C++ - C++ FAQ Lite
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed