快速业务通道

在Apache目录服务器中存储Java对象,第2部分:(下) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
中 的每个搜索结果都由一个 SearchResult 对象表示。要提取单个的搜索结果,只需在 NamingEnumeration 对象上进行迭代即可。

步骤 7. 处理单个搜索结果:注意,每个搜索结果都包含关于单一数据条目的信息。可以从 SearchResult 对象得到数据条目的两部分信息(即 RDN 和它的所有属性)。

步骤 8. 调用 getName():SearchResult 对象的 getName() 方法返回所搜索条目的 RDN。Alice 的 RDN 是 uid=alice。

步骤 9. 调用 getAttributes():SearchResult 对象的 getAttributes() 方法返回 Attributes 对 象,它包含与所搜索条目相关的所有属性值。Attributes 对象表示的属性集合与 清单 6 的步骤 4 中创 建的属性集合类似。

步骤 10. 调用 getAll():Attributes 对象的 getAll() 方法返回一个枚举,其中包含集合中的所有 属性。

步骤 11. 处理属性:最后,从集合中取出一个属性,并调用其 getID() 和 getAll() 方法。getID() 方法以字符串形式返回属性的名称。getAll() 方法以枚举的形式返回所有属性值。

应用程序 5. 按名称搜索

在前面的搜索示例中,我们已查看了如何在知道用户 uid 时搜索用户。在这个示例中,将学习如何修 改应用程序,用 Alice 的用户名而不是 uid 来搜索她。

回忆一下 第 1 部分的图 18,在该图中,用户名存储为用户数据条目的 cn 属性的值。所以,在这个 应用程序中,您将搜索 cn 属性,如清单 7 所示:

壓Apache朕村捲暦匂嶄贋刈Java斤??及2何蛍??和?(3)

扮寂:2011-08-13 IBM Bilal Siddiqui

賠汽 7. SearchForAliceByCN

public class SearchForAliceByCN {    public SearchForAliceByCN() {      try      {        //------------------------------------------        //Step1: Setting up JNDI properties for ApacheDS        //------------------------------------------        InputStream inputStream = new FileInputStream ( "ApacheDS.properties");        Properties properties = new Properties();        properties.load(inputStream);        properties.setProperty("java.naming.security.credentials",  "secret");        //------------------------------------------        // Step2: Fetching a DirContext object        //------------------------------------------        DirContext ctx = new InitialDirContext(properties);        //---------------------------------------------        //Step3: Setting search context        //---------------------------------------------        String searchContext = "ou=users";        //--------------------------------------------        //Step4: Creating search attributes for Alice        //--------------------------------------------        Attribute cn = new BasicAttribute("cn");        Attribute objclass = new BasicAttribute("objectClass");        //putting attribute values        cn.add("Alice");        objclass.add("person");        //Instantiate an Attributes object and put search attributes in  it        Attributes attrs = new BasicAttributes(true);        attrs.put(cn);        attrs.put(objc

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号