Searching the Directory by Using a Search Filter : Directory « JNDI LDAP « Java






Searching the Directory by Using a Search Filter

 
import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.NamingEnumeration;
import javax.naming.directory.DirContext;
import javax.naming.directory.InitialDirContext;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;

public class Main {
  public static void main(String[] argv) throws Exception {
    String[] attrIDs = { "sn", "number", "value", "mail" };

    SearchControls ctls = new SearchControls();
    ctls.setReturningAttributes(attrIDs);

    String filter = "(&(sn=YourName)(mail=*))";

    Hashtable<String, String> env = new Hashtable<String, String>();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "yourURL");

    DirContext ctx = new InitialDirContext(env);

    NamingEnumeration e = ctx.search("ou=People", filter, ctls);

    while (e.hasMore()) {
      SearchResult entry = (SearchResult) e.next();
      System.out.println(entry.getName());
    }
  }
}

   
  








Related examples in the same category

1.Creating an Initial Context to a Directory
2.Reading an Object's Attributes from the Directory
3.Modifying an Object's Attributes in the Directory
4.Creating a Directory Entry
5.Adding a Binding with Attributes to the Directory
6.Performing a Basic Directory Search
7.Searching a Subtree in the Directory
8.Cancelling a Directory Search
9.Getting an Object's Schema from the Directory
10.Getting an Attribute's Schema from the Directory
11.Authenticating to the Directory
12.Registering for Namespace Changes in the Directory
13.Registering for Object Changes in the Directory