Bonjour,
Je réalise des sauvegardes XML en java et j’utilise JDOM pour créer un fichier XML.
Mais j’ai un problème : j’ai importer le package de import org.jdom.output mais celui-ci n’accèpte pas import org.jdom.output.Format; alors qu’il est nécessaire pour pouvoir afficher mon arbre XML.
Voici le code :
[i] try {
XMLOutputter sortie = new XMLOutputter(Format.getPrettyFormat());
sortie.output(document, System.out);
} catch(java.io.IOException e) {}
try {
fichierXML = Projet.getInstanceProjet().getFichierXML();
XMLOutputter sortie = new XMLOutputter(Format.getPrettyFormat());
sortie.output(document, new FileOutputStream(fichierXML));
} catch(java.io.IOException e) {}[/i]