openfire将用户添加到组

时间:2017-06-12 12:08:39

标签: xmpp openfire xmppframework

我已经阅读了许多关于在openfire开发论坛上以编程方式将用户添加到群组的帖子 不幸的是,他们都没有为我工作 我可以通过UserManager.createUser()以编程方式创建用户。成功创建新用户后,我想将他添加到用户组中。

该组已存在,因此我尝试使用以下代码:

public void addUserToGroup(User user) {
   Group group = GroupManager.getInstance().getGroup("users");
   JID jid = new JID(user.getUsername());
   group.getMembers().add(jid);
}

我在答案HERE中找到了代码段。

然后我尝试使用此示例Java Code Example org.jivesoftware.openfire.group.Group(示例编号9),即使我不了解此事件如何将新成员添加到组中。
就像我说的,它们都没有奏效。

您能否提供有关&#34的信息;如何将群组成员添加到群组?"

0 个答案:

没有答案