gpt4 book ai didi

java - LDAP Java 属性 maxpwdAge 返回 -864000000000

转载 作者:行者123 更新时间:2023-11-30 10:18:49 25 4
gpt4 key购买 nike

Java 中,我尝试读取属性 maxpwdAge,而在 LDAP 中,此属性定义为 180 days,但在我的 Java API 中返回 -864000000000

您知道这个问题是否与LDAP 中的权限有关吗?我该如何解决?

问候。

最佳答案

我写了一个将 ldap 时间段转换为天数的方法:

public static Long ldapTimePeriodToDays(String ldapPeriod) {
Long ldapPeriodLong = Long.parseLong(ldapPeriod);

long days = Math.abs(ldapPeriodLong
/ 10_000 //100-nanosecond time slices to milliseconds
/ 1000 //to seconds
/ 60 //to minutes
/ 60 //to hours
/ 24 //to days
);

return days;
}

关于java - LDAP Java 属性 maxpwdAge 返回 -864000000000,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49038587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com