Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IDEを使用して2つの説明(属性)を追加できますが、Javaからは1つの説明しか追加できません。2番目のものを追加する方法は?
JDKLDAPライブラリを使用しています。
いくつかの試行の後、私は自分でそれを行うことができました
Attributes attrs = new BasicAttributes(true); BasicAttribute b = new BasicAttribute("description"); b.add("a"); b.add("b"); attrs.put(b);