Writing to an Object Stream
// serilaize various objects into a file
FileOutputStream f = new FileOutputStream(“tmp”);
ObjectOutputStream s = new ObjectOutputStream(f);
s.writeObject(new Date());
Theater t = new Theater(4,6,10);
//4 shows, 6 rows, 10 cols