generation d'un arbre au format XML - Java - Programmation
Marsh Posté le 06-08-2008 à 15:35:16
a partir de ce code qui genere dans un format quelconque je voudrais generer le fichier au format XML. Merci private void enregistrerArbre() { JFileChooser selecteur = new JFileChooser(); if (selecteur.showSaveDialog(this) != JFileChooser.APPROVE_OPTION) return; File nomFic = selecteur.getSelectedFile(); try { ObjectOutputStream sortie = new ObjectOutputStream(new FileOutputStream(nomFic)); sortie.writeObject(racine); sortie.close(); } catch (IOException exception) { JOptionPane.showMessageDialog( this, exception.toString(), "Problème pendant l’enregistrement", JOptionPane.ERROR_MESSAGE); return; } JOptionPane.showMessageDialog( this, "Enregistrement terminé avec succès", "Enregistrement", JOptionPane.INFORMATION_MESSAGE); }
Marsh Posté le 06-08-2008 à 15:59:12
1- definir la structure de ton fichier XML 2- creer ce fichier XML ou est le problème ?
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 06-08-2008 à 15:35:16
a partir de ce code qui genere dans un format quelconque je voudrais generer le fichier au format XML.
Merci
private void enregistrerArbre() {
JFileChooser selecteur = new JFileChooser();
if (selecteur.showSaveDialog(this) != JFileChooser.APPROVE_OPTION)
return;
File nomFic = selecteur.getSelectedFile();
try {
ObjectOutputStream sortie =
new ObjectOutputStream(new FileOutputStream(nomFic));
sortie.writeObject(racine);
sortie.close();
} catch (IOException exception) {
JOptionPane.showMessageDialog(
this,
exception.toString(),
"Problème pendant l’enregistrement",
JOptionPane.ERROR_MESSAGE);
return;
}
JOptionPane.showMessageDialog(
this,
"Enregistrement terminé avec succès",
"Enregistrement",
JOptionPane.INFORMATION_MESSAGE);
}