Button b = new Button("Beans Book");
b.setFont(new Font("System", Font.BOLD, 36));
add(b);
try
{
FileOutputStream f = new FileOutputStream("Saver.tmp");
ObjectOutput s = new ObjectOutputStream(f);
s.writeObject(b);
s.flush();
}
catch (Exception e)
{
System.out.println(e);
}