我正在尝试使用Spring将ActiveDirectory记录导出到LDIF格式的文件中。
我发现了很多有关解析LDIF文件的信息,但是关于导出到LDIF的信息却很少。在Spring中,有一个LdapAttributes
类,该类的toString()
方法返回LDIF格式的字符串,但是我不知道首先从哪里获得LdapAttributes
实例。我在LdapTemplate
上没有看到任何内容。
希望该框架提供了一种简单的方法来实现此目的,而不必自己构建LdapAttributes
对象。
最佳答案
签出诸如unboundid LDAP SDK https://www.unboundid.com/products/ldap-sdk/docs/javadoc/com/unboundid/ldif/package-summary.html之类的内容
关于java - 我如何获得LdapAttributes,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14864147/