使用System.getProperties()方法取得InitialContext

使用System.getProperties()方法取得InitialContext

public class InitContext {   
  public static void main(String args[]) throws Exception {   
    javax.naming.Context ctx = new javax.naming.InitialContext(System.getProperties());   
    System.err.println("Success!");   
  }   
  
}

你可能感兴趣的:(使用System.getProperties()方法取得InitialContext)