通过java语言去LDAP检索信息

1.初始化上下文

 public InitialDirContext createLDAPContext(String ldapHost, String ldapPort, String bindDN, String bindPwd)
     throws NamingException
   {
     Hashtable env = new Hashtable();

     env.put("java.naming.factory.initial", "com.sun.jndi.ldap.LdapCtxFactory");
     env.put("java.naming.factory.url.pkgs", "com.ibm.jndi");
     env.put("java.naming.provider.url", "ldap://" + ldapHost + ":" + ldapPort);
     env.put("java.naming.security.principal", bindDN);
     env.put("java.naming.security.credentials", bindPwd);

     InitialDirContext dirCtx = new InitialDirContext(env);
     return dirCtx;
   }

2.获取uid为20170808用户的姓名
姓名属性为displayName,参数:
dn=”uid=20170808,dc=test,dc=com”,attrName=”displayName”

public synchronized String getLDAPAttribute(String dn, String attrName, DirContext dirCtx) {
     String result = null;
     boolean rebuilt = false;
     try { Attributes attrs;
       Attribute attr;
       do { attrs = dirCtx.getAttributes(dn);
         attr = attrs.get(attrName); }
       while (attrs == null);
       result = (String)attr.get();
     } catch (CommunicationException ce)
     {
       while (true) {
         if (!rebuilt) {
           try
           {
             createLDAPContext(SystemProperties.getLDAP_HOST(), SystemProperties.getLDAP_PORT(), SystemProperties.getLDAP_BINDDN(), SystemProperties.getLDAP_BINDPASSWORD());
             rebuilt = true;
           }
           catch (NamingException ne) {
             log.error(ne.toString());
           }
         }
       }
     }
     catch (Exception ex)
     {
       log.error("*********LDAP attribute not found: " + ex.toString() + "**********");
     }

       log.info("********getLDAPAttribute(): exit (" + result + ").*********");
     return result;
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值