try
{
// create a map of acronyms
HashMap map = new HashMap();
map.add( "FAQ", "Frequently Asked Questions" );
map.add( "OMG", "Object Management Group" );
map.add( "ORB", "Object Request Broker" );
// save map to a file
ObjectOutput s = new ObjectOutputStream( new FileOutputStream( "Serial1.ser" ) );
s.writeObject( map );
s.flush();
s.close();
}
catch ( IOException e )
{
System.out.println( "caught: " + e );
}