| Lecture 8 - slide 23 : 26 Program 1 |
// gem litteratur på fil
try {
ObjectOutput s = new ObjectOutputStream( new FileOutputStream( "literature.bin" ) );
s.writeObject(literatureShelf);
s.flush();
s.close();
}
catch ( IOException e ) {
System.out.println( "caught: " + e );
} // slut på lagring |