Smack,创建新的 MultiChat 时出错
我正在使用 asmack 来创建聊天应用程序。 为了创建多用户聊天,我使用以下代码。
muc= new MultiUserChat(HomeActivity.connection, "[email protected]");
try
{
muc.create(HomeActivity.connection.getUser());
muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
muc.join("kam");
}
catch (XMPPException e)
{
e.printStackTrace();
}
但我收到错误。
类 CastException。 &如果我从新的 MUC() 中删除会议,那么我得到 服务器无响应错误。
我哪里错了?我必须使用一些补丁吗?
I am using asmack for creating a chat app.
For creating a MultiUserChat i am using following code.
muc= new MultiUserChat(HomeActivity.connection, "[email protected]");
try
{
muc.create(HomeActivity.connection.getUser());
muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
muc.join("kam");
}
catch (XMPPException e)
{
e.printStackTrace();
}
But i an getting the error.
Class CastException. & if i remove the Confrence from new MUC() then I get
Server Not Responsing Error.
Where i am wrong? Do i have to use some Patch.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好发送更多详细信息,例如堆栈跟踪。
确保您遵循此处的代码示例:
多用户聊天
it would be better to send more details like the stack trace.
Make sure you follow the code example here:
Multi User Chat