试下: Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
env.put(Context.PROVIDER_URL, "localhost:1099");
env.put("java.naming.factory.url.pkgs","org.jboss.naming:org.jnp.interfaces");
Context ctx = new InitialContext(env);

//Properties props = System.getProperties();
//Context ctx = new InitialContext(props);   

Object obj=ctx.lookup("interest/Interest");
…………………………