home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Voyager4A.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  41 lines

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.voyager.*;
  4. import com.objectspace.voyager.*;
  5.  
  6. /**
  7.  * Persist a container.
  8.  *
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Voyager4A
  14.   {
  15.   /**
  16.    * This example only works with ObjectSpace Voyager(tm).
  17.    * Visit the <a href=http://www.objectspace.com/voyager>Voyager homepage</a> for more information.
  18.    */
  19.   public static void main( String[] args )
  20.     {
  21.     try
  22.       {
  23.       // create and fill a remote map
  24.       VHashMap map = new VHashMap( "localhost:8000/JGL4" );
  25.       map.add( "Spider-Man", "Peter Parker" );
  26.       map.add( "Wolverine", "Logan" );
  27.       map.add( "Batman", "Bruce Wayne" );
  28.       map.add( "Oracle", "Barbara Gordon" );
  29.       map.liveForever(); // do not garbage collect
  30.       map.saveNow(); // save copy to database of server 8000
  31.       System.out.println( "saved " + map );
  32.       }
  33.     catch ( VoyagerException ex )
  34.       {
  35.       System.err.println( "caught: " + ex );
  36.       }
  37.  
  38.     Voyager.shutdown();
  39.     }
  40.   }
  41.