smack 中的多用户聊天

发布于 2024-11-28 00:12:51 字数 400 浏览 3 评论 0原文

我是 SMACK 聊天 API 的新用户。我正在尝试编写一个多用户聊天应用程序,但无法做到。任何人都可以给我简单的完整版本的代码吗?

这是我的代码

    ConnectionConfiguration config = new ConnectionConfiguration("127.0.0.1",5222);
    connection = new XMPPConnection(config);
    connection.connect();
    connection.login("aa", "bb");

    MultiUserChat muc = new MultiUserChat(connection, "test@testdomain");
    muc.join("nick");

I am a new user of SMACK chat API. I am trying to write a multi user chat application but not able to do it. Can anyone give me simple full version of code for this.

Here is my code

    ConnectionConfiguration config = new ConnectionConfiguration("127.0.0.1",5222);
    connection = new XMPPConnection(config);
    connection.connect();
    connection.login("aa", "bb");

    MultiUserChat muc = new MultiUserChat(connection, "test@testdomain");
    muc.join("nick");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

少跟Wǒ拽 2024-12-05 00:12:51

我注意到您的代码的一件事是您没有在任何地方添加消息侦听器。除非您调用类似的命令,否则您的代码将不会收到新消息的通知
muc.addMessageListener(...

One thing I notice about your code is that you do not add a message listener anywhere. Your code will not be notified of new messages unless you call something like
muc.addMessageListener(...

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