manel1989 | Salut tout le monde !
j'aimerai bien savoir comment créer un fichier xml et l'afficher dans un emplacement bien déterminé autre que le console, j'ai réussie à le créer et l'afficher dans le console, ce que je veut est l'afficher dans l'emplacement suivant C:\Users\abdelhalim\Documents.
J'utilise Tinyxml pour créer le fichier xml , et mon code est le suivant : Code :
- void crerxmlfichier1::write_simple_doc2(int n,int m )
- {
- // same as write_simple_doc1 but add each node
- // as early as possible into the tree.
- TiXmlDocument doc;
- TiXmlDeclaration* decl = new TiXmlDeclaration( "1.0", "", "" );
- doc.LinkEndChild( decl );
- TiXmlElement * root = new TiXmlElement( "TestPlan" );
- doc.LinkEndChild( root );
- int k=0;
- for (int i = 0; i <n; i++){
- TiXmlElement * em = new TiXmlElement( "Testeur" );
- root->LinkEndChild( em );
- ++k;
- char f[50];
- sprintf(f, "%s%d", "N", k);
- em->SetAttribute("Node", f);
- k=i+1;
- char j[50];
- sprintf(j, "%s%d", "T", k);
- em->SetAttribute("id", j);
- }
- dump_to_stdout( &doc );
- doc.SaveFile( "appsettings.xml" );
- }
|
je serai très reconnaissante si vous pouvez m'aider .
Bonne journée ---------------
when there is a will there is a way
|