<legend id='EvHFE'><style id='EvHFE'><dir id='EvHFE'><q id='EvHFE'></q></dir></style></legend>

        <i id='EvHFE'><tr id='EvHFE'><dt id='EvHFE'><q id='EvHFE'><span id='EvHFE'><b id='EvHFE'><form id='EvHFE'><ins id='EvHFE'></ins><ul id='EvHFE'></ul><sub id='EvHFE'></sub></form><legend id='EvHFE'></legend><bdo id='EvHFE'><pre id='EvHFE'><center id='EvHFE'></center></pre></bdo></b><th id='EvHFE'></th></span></q></dt></tr></i><div id='EvHFE'><tfoot id='EvHFE'></tfoot><dl id='EvHFE'><fieldset id='EvHFE'></fieldset></dl></div>
          <bdo id='EvHFE'></bdo><ul id='EvHFE'></ul>
      1. <tfoot id='EvHFE'></tfoot>

        <small id='EvHFE'></small><noframes id='EvHFE'>

      2. 获取 LDAP 对象的内部属性

        时间:2024-05-10
        <tfoot id='ug6Bs'></tfoot>
          <tbody id='ug6Bs'></tbody>

          1. <legend id='ug6Bs'><style id='ug6Bs'><dir id='ug6Bs'><q id='ug6Bs'></q></dir></style></legend>
              <bdo id='ug6Bs'></bdo><ul id='ug6Bs'></ul>

              <i id='ug6Bs'><tr id='ug6Bs'><dt id='ug6Bs'><q id='ug6Bs'><span id='ug6Bs'><b id='ug6Bs'><form id='ug6Bs'><ins id='ug6Bs'></ins><ul id='ug6Bs'></ul><sub id='ug6Bs'></sub></form><legend id='ug6Bs'></legend><bdo id='ug6Bs'><pre id='ug6Bs'><center id='ug6Bs'></center></pre></bdo></b><th id='ug6Bs'></th></span></q></dt></tr></i><div id='ug6Bs'><tfoot id='ug6Bs'></tfoot><dl id='ug6Bs'><fieldset id='ug6Bs'></fieldset></dl></div>

              • <small id='ug6Bs'></small><noframes id='ug6Bs'>

                  本文介绍了获取 LDAP 对象的内部属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试获取 LDAP 用户内部属性,但找不到如何获取它们

                  I am trying to fetch LDAP User internal attributes, but couldn't find how to fetch them

                  DirContext ctx = this.getDirContext();
                  List<Employee> list = new ArrayList<Employee>();
                  NamingEnumeration<SearchResult> results = null;
                  try {
                    SearchControls controls = new SearchControls();
                    controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                    results = ctx.search("", "(objectclass=person)", controls);
                    while (results.hasMore()) {
                      SearchResult searchResult = results.next();
                      Attributes attributes = searchResult.getAttributes();
                      String fullName = this.getValue(attributes.get("cn"));
                      //so on...
                  }
                  // so on
                  

                  从 LDAP,我也想获取每个员工/个人的内部属性.默认情况下,它不返回内部属性 [例如:createTimestamp]

                  from LDAP, I want to fetch each employee/person internal attributes too. By Default, it's not returning the internal attributes [ex: createTimestamp]

                  推荐答案

                  除非您要求,否则您不会获得任何操作属性.目前不要求任何属性,相当于构造SearchControls,或者之后调用SearchControls.setReturningAttributes(String[]),使用参数new String[]{"*"}:这给了你所有的非操作属性.

                  You won't get any operational attributes unless you ask for them. At present you aren't asking for any attributes, which is equivalent to constructing the SearchControls, or calling SearchControls.setReturningAttributes(String[]) afterwards, using the argument new String[]{"*"}:this gives you all the non-operational attributes.

                  要同时获取操作属性,请使用参数 new String[]{"*","+"}.

                  To get the operational attributes as well, use the argument new String[]{"*","+"}.

                  这篇关于获取 LDAP 对象的内部属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:用于查询 LDAP 的 Java API 下一篇:从 Java 中创建 SQL 批量更新

                  相关文章

                  <i id='hvByq'><tr id='hvByq'><dt id='hvByq'><q id='hvByq'><span id='hvByq'><b id='hvByq'><form id='hvByq'><ins id='hvByq'></ins><ul id='hvByq'></ul><sub id='hvByq'></sub></form><legend id='hvByq'></legend><bdo id='hvByq'><pre id='hvByq'><center id='hvByq'></center></pre></bdo></b><th id='hvByq'></th></span></q></dt></tr></i><div id='hvByq'><tfoot id='hvByq'></tfoot><dl id='hvByq'><fieldset id='hvByq'></fieldset></dl></div>

                      <legend id='hvByq'><style id='hvByq'><dir id='hvByq'><q id='hvByq'></q></dir></style></legend>
                    1. <tfoot id='hvByq'></tfoot>

                      <small id='hvByq'></small><noframes id='hvByq'>

                      • <bdo id='hvByq'></bdo><ul id='hvByq'></ul>