相关代码 |
|
This example parses a compound name using a parser from an LDAP service in which components are arranged from right to left, delimited by the comma character (,). try { NameParser parser = ctx.getNameParser(""); Name dn = parser.parse("cn=John, ou=People, o=JNDITutorial"); dn.remove(1); // ou=People dn.add(0, "c=us"); // cn=John,o=JNDITutorial,c=us dn.add("cn=fs"); // cn=fs,cn=John,o=JNDITutorial,c=us } catch (NamingException e) { }