Smack,创建新的 MultiChat 时出错

发布于 2024-12-15 06:21:47 字数 688 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷途知返 2024-12-22 06:21:47

最好发送更多详细信息,例如堆栈跟踪。
确保您遵循此处的代码示例:
多用户聊天

it would be better to send more details like the stack trace.
Make sure you follow the code example here:
Multi User Chat

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文