使用JNDI操作LDAP(3)(转载)

l         读取属性

当读取目录中一个对象的属性时,需要将对象名传给LdapContext.getAttributes()方法作参数。假设有一个名为”cn=Ted Geisel,ou=people”的对象,为了获取它的属性,需要使用如下的代码:

Attributes answer = ctx.getAttributes("cn=Ted Geisel, ou=People");

通过下面的代码迭代打出所有的属性名和属性值:

for (NamingEnumeration ae = attrs.getAll(); ae.hasMore();) {

         Attribute attr = (Attribute) ae.next();

         System.out.println("attribute: " + attr.getID());

         /* print each value */

for (NamingEnumeration e = attr.getAll(); e.hasMore(); System.out

                                                                                                                         .println("value: " + e.next()));

}

执行的结果如下:

attribute: telephonenumber

value: +1 408 555 5252

attribute: mail

value: Ted.Geisel@JNDITutorial.com

attribute: facsimiletelephonenumber

value: +1 408 555 2329

 

返回指定的属性:

为了运行所有属性的一个子集,可以指定一个属性名数组来指定需要获取的属性:

// Specify the ids of the attributes to return

                   String[] attrIDs = { "sn", "telephonenumber", "golfhandicap",

                                                                                             "mail" };

                   // Get the attributes requested

                   Attributes answer = ctx.getAttributes("cn=Ted Geisel, ou=People",

                                                                                    attrIDs);

返回结果如下:

attribute: telephonenumber

value: +1 408 555 5252

attribute: mail

value: Ted.Geisel@JNDITutorial.com

attribute: sn

value: Geisel

由于这个对象没有golfhanicap属性,所以只返回三个属性。

 

基本检索

这是目录检索的最简单的形式,只需要指定检索结果必须包含的属性以及检索的目的上下文。下面的代码创建了一个属性集matchAttrs,其中包含两个属性,telephonenumber和mail,检索指定了实体必须具有的surname(sn)属性和mail属性,并且surname属性的值为”Geisel”,而mail的属性值任意。然后调用DirContext.search()方法在ou=people的上下文中检索符合matchAttrs的实体。

Attributes matchAttrs = new BasicAttributes(true); // ignore case

matchAttrs.put(new BasicAttribute("sn", "Geisel"));

matchAttrs.put(new BasicAttribute("mail"));

// Search for objects that have those matching attributes

NamingEnumeration answer = ctx.search("ou=People", matchAttrs);

可以使用下面的语句打印结果:

while (answer.hasMore()) {

SearchResult sr = (SearchResult) answer.next();

System.out.println(">>>" + sr.getName());

GetattrsAll.printAttrs(sr.getAttributes());

}

返回结果为:

>>>cn=Ted Geisel

attribute: telephonenumber

value: +1 408 555 5252

attribute: mail

value: Ted.Geisel@JNDITutorial.com

attribute: facsimiletelephonenumber

value: +1 408 555 2329

attribute: objectClass

value: person

value: inetOrgPerson

value: organizationalPerson

value: top

attribute: jpegphoto

value: [B@179c285

attribute: sn

value: Geisel

attribute: cn

value: Ted Geisel

可以选择返回指定的属性,代码如下:

// Specify the ids of the attributes to return

String[] attrIDs = { "sn", "telephonenumber", "golfhandicap","mail" };

answer = ctx.search("ou=People", matchAttrs, attrIDs);

此时返回的结果为:

>>>cn=Ted Geisel

attribute: telephonenumber

value: +1 408 555 5252

attribute: mail

value: Ted.Geisel@JNDITutorial.com

attribute: sn

value: Geisel


遨豪一直专注于Liferay门户本地化服务,致力于为中国用户提供最佳的Liferay门户解决方案,其主要服务包括:

1. Liferay门户二次开发服务(基于客户需求)

2. Liferay门户技术支持服务 (现场+远程)

3. Liferay门户定制培训服务 (现场+远程)

4. Liferay门户企业版服务  (提供liferay企业版+专业技术支持)

------------------------------------------------------------

遨豪(大连)科技有限公司

Liferay 中国合作伙伴

-------------------------------------

市场部: Mr.Luo

-------------------------------------

电话:411-8405-2127

传真:411-8489-8263

MSN: liferayjw@hotmail.com

QQ:  1209462980

email:jiajia6f@163.com

------------------------------------

地址:大连高新技术产业园区

-------------------------------------

网址: www.aukcell.com

-------------------------------------

转载于:https://my.oschina.net/liferay/blog/5803

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值