壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 12641|回复: 2

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

[复制链接]
发表于 2010/6/29 11:08:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
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
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
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
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
attribute: sn
value: Geisel

 楼主| 发表于 2010/6/29 11:17:15 | 显示全部楼层
遨豪一直专注于Liferay门户本地化服务,致力于为中国用户提供最佳的Liferay门户解决方案,更多咨询,交流,合作请登录www.aukcell.com
 楼主| 发表于 2010/7/12 09:48:40 | 显示全部楼层
遨豪一直专注于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
-------------------------------------

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 05:10 , Processed in 0.014091 second(s), 15 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表