home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Voyager4B.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  46 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.  * Retrieve a persisted container.
  8.  *
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Voyager4B
  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.       // connect to persistent map in server 8000
  24.       VHashMap map = (VHashMap)VObject.forObjectAt("localhost:8000/JGL4");
  25.       query( map, "Spider-Man" );
  26.       query( map, "Mr. Fantastic" );
  27.       map.dieNow(); // kill map, remove from database
  28.       }
  29.     catch ( VoyagerException ex )
  30.       {
  31.       System.err.println( "caught: " + ex );
  32.       }
  33.  
  34.     Voyager.shutdown();
  35.     }
  36.  
  37.   public static void query( VHashMap map, String hero ) throws VoyagerException
  38.     {
  39.     Object name = map.get( hero );
  40.     if ( name == null )
  41.       System.out.println( hero + " is not in the database" );
  42.     else
  43.       System.out.println( hero + " is really " + name );
  44.     }
  45.   }
  46.