1

我正在使用 xmpp/openfire 制作一个聊天应用程序,我想在服务器上创建组,服务器上的任何人都可以加入。

任何人都请帮助我。

4

3 回答 3

4

像这样你可以在 Xmpp 服务器中创建组

            SmackAndroid.init(SelectMembers.this);
            MultiUserChat muc = new MultiUserChat(xconnection, GroupName
                    + "@conference.fonechat.in");
            muc.create(my_number);
            setConfig(muc);
            muc = new MultiUserChat(xconnection, GroupName + "@conference.serverid");
            muc.join(my_number);
            for (int i = 0; i < name.size(); i++) {
                muc.invite(phone.get(i).toString() + "@fonechat.in",
                        "Meet me in this excellent room");

//设置配置函数

    private void setConfig(MultiUserChat multiUserChat) {

    try {
        Form form = multiUserChat.getConfigurationForm();
        Form submitForm = form.createAnswerForm();
        for (Iterator<FormField> fields = submitForm.getFields(); fields
                .hasNext();) {
            FormField field = (FormField) fields.next();
            if (!FormField.TYPE_HIDDEN.equals(field.getType())
                    && field.getVariable() != null) {
                submitForm.setDefaultAnswer(field.getVariable());
            }
        }
        submitForm.setAnswer("muc#roomconfig_publicroom", true);
        submitForm.setAnswer("muc#roomconfig_persistentroom", true);
        multiUserChat.sendConfigurationForm(submitForm);
    } catch (Exception e) {
        e.printStackTrace();
    }

}
于 2015-04-07T11:28:31.973 回答
0

试试 QuickBlox.com 他们也有一个示例程序..

于 2013-04-16T09:39:46.560 回答
0

尝试为每个组创建一个持久的多用户聊天室(MUC:http: //xmpp.org/extensions/xep-0045.html )。您将能够向组中的每个人发送消息,这非常有用。

于 2012-12-09T22:48:04.860 回答