JAVA操作LDAP之修改属性篇

为什么80%的码农都做不了架构师?>>>   hot3.png

Attributes attributes = new BasicAttributes(true);
            Attribute attribute = new BasicAttribute("objectclass");
            attribute.add("top");
            attribute.add("person");
            attribute.add("user");
            attributes.put(attribute);
            attributes.put("mail", "[email protected]");
            attributes.put("description", "12345");
            attributes.put("telephoneNumber", "13012344321");
            context.modifyAttributes("CN=周海生,CN=Users,DC=umapad,DC=com", DirContext.REPLACE_ATTRIBUTE, attributes);
        

转载于:https://my.oschina.net/haison/blog/677822

你可能感兴趣的:(JAVA操作LDAP之修改属性篇)