博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android smack MultiUserChat.getHostedRooms( NullPointerException)
阅读量:5203 次
发布时间:2019-06-13

本文共 1384 字,大约阅读时间需要 4 分钟。

用Smack开发andorid IM, 开发群组时想获取服务器上所有的聊天室,调用下面方法时出现NullPointerException:

Collection
hostrooms = MultiUserChat.getHostedRooms(ClientConnectionServer.connection, ClientConnectionServer.connection.getServiceName());

而方法的2个参数都不为空,感觉很怪,就去国外论坛看了原因,查了几篇文章发现解决办法,下面是论坛里的一些信息:

The problem is that the  has to be evaluated beforeany connection is created. In smack this is done via an configuration file, but this approach does not work on Android and therefore on aSmack.

The workaround mentioned in the answer is somehow ugly, since you really don't want to use the Constructor to fetch the SDM object, instead the get() method should be used. But the get() method only works if there was actually a SDM created for the connection.

So in order to init the SDM correctly on Android you need to call the  to init the static blocks of the class before you create the first (XMPP)Connection object.。

上面方法是针对 aSmack 问题给出的解决方法,同样也适用 纯smack 的:

所以在初始化 XMPPConnection 前先初始化ServiceDiscoveryManager,代码为:

try{  // 其中ClientConnectionServer.class.getClassLoader() 用来获取当前类的类加载器,如果用ClassLoader.getSystemClassLoader(),我测试的没起作用   Class.forName("org.jivesoftware.smackx.ServiceDiscoveryManager", true, ClientConnectionServer.class.getClassLoader());}catch (ClassNotFoundException e1){  e1.printStackTrace();}// 下面是进行XMPPConnection的初始化
  ........

 

转载于:https://www.cnblogs.com/windy-love/p/3199294.html

你可能感兴趣的文章
这是通过 Open Live Writer(是个博客编辑器) 发布的
查看>>
Codeforces Round #401 (div.2)
查看>>
在jsp中默认写上的一段java代码表示basePath 的路径的具体的意思是什么?
查看>>
AndroidDevTools简介
查看>>
《TCP/IP详解卷1:协议》读书笔记
查看>>
软硬链接的学习
查看>>
hibernate12--注解
查看>>
使用Gridview绑定数据库中的图片
查看>>
C# 视频监控系列(4):客户端——音频接收和截图
查看>>
asp.net mvc 无刷新高效分页
查看>>
【转载】浅谈大型网络入侵检测建设
查看>>
Linux kernel Wikipedia
查看>>
Linux 用户组
查看>>
小w、小j和小z
查看>>
C# 使用GDI制作垂直进度条(由下往上)
查看>>
ASP.NET Core的实时库: SignalR -- 预备知识
查看>>
3:WebHost的默认配置
查看>>
Linux 期中架构 rsync
查看>>
oracle之5多行函数之过滤分组函数
查看>>
oo之homework2个人分析
查看>>