1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
public static void save(Compte compte) throws FileNotFoundException, IOException {
ObjectOutputStream out = null;
try {
File path = new File( Properties.getDataFilesPath() + compte.getNom() + ".cpt");
if ( !new File(Properties.getDataFilesPath()).exists() )
new File(Properties.getDataFilesPath()).createNewFile();
// Ecris l'Objet
out = new ObjectOutputStream(new FileOutputStream(path));
out.writeObject(compte);
out.flush();
} catch ( FileNotFoundException ex) {
ex.printStackTrace();
} catch( IOException ex) {
ex.printStackTrace();
} finally {
out.close();
}
} |
Partager