smack 中的多用户聊天
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我注意到您的代码的一件事是您没有在任何地方添加消息侦听器。除非您调用类似的命令,否则您的代码将不会收到新消息的通知
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(...