我必须读取LDIF文件,拆分条目,修改它们,然后将结果写为LDIF文件。
我在Apache Directory LDAP API(org.apache.directory.api:api-ldap-client-api
)上找到了一个LdifReader,所以我尝试了这样一个:
Stream<LdifEntry> stream = StreamSupport.stream(reader.spliterator(), false);
Predicate<LdifEntry> isEnabled = entry -> entry.get("pwdAccountLockedTime") == null;
Map<Boolean, List<LdifEntry>> parts = stream.collect(Collectors.partitioningBy(isEnabled));
List<LdifEntry> enabledAccounts = parts.get(true);
List<LdifEntry> disabledAccounts = parts.get(false);
运作良好。但是,由于某些原因,所有属性名称/ ID都是小写的(“pwdAccountLockedTime”变为“pwdaccountlockedtime”等),但我需要它们(保留大小写) - 为了保持相同的人类可读性< / strong>和以前一样。
知道怎么做吗?如果需要,我将使用不同的库。
注意:我想改进我的问题,因为我得到了一些downvotes。请告诉我,它有什么问题或缺少什么。
答案 0 :(得分:-1)
我能够通过用org.springframework.ldap:spring-ldap-ldif-core
替换库并编写一个小助手来解决我的问题。
public class LdifUtils {
/**
* Reads an LDIF file and returns its entries as a collection
* of <code>LdapAttributes</code> (LDAP entries).
* <br>
* Note: This method is not for huge files,
* as the content is loaded completely into memory.
*
* @param pathToLdifFile the <code>Path</code> to the LDAP Data Interchange Format file
* @return a <code>Collection</code> of <code>LdapAttributes</code> (LDAP entries)
* @throws IOException if reading the file fails
*/
public static Collection<LdapAttributes> read(final Path pathToLdifFile) throws IOException {
final LdifParser ldifParser = new LdifParser(pathToLdifFile.toFile());
ldifParser.open();
final Collection<LdapAttributes> c = new LinkedList<>();
while (ldifParser.hasMoreRecords()){
c.add(ldifParser.getRecord());
}
ldifParser.close();
return c;
}
}
像以前一样使用......
final Stream<LdapAttributes> stream = LdifUtils.read(path).stream();
final Predicate<LdapAttributes> isEnabled = entry -> entry.get("pwdAccountLockedTime") == null;
final Map<Boolean, List<LdapAttributes>> parts = stream.collect(Collectors.partitioningBy(isEnabled));
final List<LdapAttributes> enabledAccounts = parts.get(true);
final List<LdapAttributes> disabledAccounts = parts.get(false);
logger.info("enabled accounts: " + enabledAccounts.size());
logger.info("disabled accounts: " + disabledAccounts.size());
注意:我想改进我的答案,因为我得到了一些downvotes。请告诉我,它有什么问题或缺少什么。