在这个例子中我们可以看到如何创建一个instant room:
// 使用XMPPConnection创建一个MultiUserChat
MultiUserChat muc = new MultiUserChat(conn1, "
[email protected]");
//创建聊天室
muc.create("testbot");
// 发送一个空表单配置这显示我们想要一个instant room
muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
在这个例子中我们可以看到如何创建一个reserved room.表单使用默认值完成:
// 使用XMPPConnection创建一个MultiUserChat
MultiUserChat muc = new MultiUserChat(conn1, "
[email protected]");
// 创建聊天室
muc.create("testbot");
// 获得聊天室的配置表单
Form form = muc.getConfigurationForm();
// 根据原始表单创建一个要提交的新表单。
Form submitForm = form.createAnswerForm();
// 向要提交的表单添加默认答复
for (Iterator fields = form.getFields(); fields.hasNext();) {
FormField field = (FormField) fields.next();
if (!FormField.TYPE_HIDDEN.equals(field.getType()) && field.getVariable() != null) {
// 设置默认值作为答复
submitForm.setDefaultAnswer(field.getVariable());
}
}
// 设置聊天室的新拥有者
List owners = new ArrayList();
owners.add("
[email protected]");
submitForm.setAnswer("muc#roomconfig_roomowners", owners);
// 发送已完成的表单(有默认值)到服务器来配置聊天室
muc.sendConfigurationForm(submitForm);