我正在使用 XMPP 连接(使用 smack)在 android 应用程序中进行聊天。我已经与 openfire 建立了连接,我也可以发送和接收消息。但问题是当我进入 XMPPClient.java 活动时,它做了连接。所以在没有进入那个活动之前我无法收到任何消息。那么如何在开始时建立连接,然后在其他活动中重用。代码在这 2 个链接ConnectionSettings 文件和聊天屏幕中,我们可以在其中进行聊天。在此链接中,评论行也是我的问题,因此也请参阅该评论。
问问题
5443 次
1 回答
5
创建全局 XMPPConnection 对象并在下面使用函数并存储在全局 XMPPConnection 对象中并在任何地方使用该连接对象。这是一个示例 gtalk 示例。
public XMPPConnection login() throws XMPPException {
ConnectionConfiguration config = new
ConnectionConfiguration("talk.google.com",5222,"gmail.com");
config.setSecurityMode(SecurityMode.required);
config.setTruststoreType("BKS");
config.setTruststorePath("/system/etc/security/cacerts.bks");
XMPPConnection connection = new XMPPConnection(config);
connection.connect();
connection.login(username, password);
Presence presence = new Presence(Presence.Type.available);
presence.setMode(Presence.Mode.available);
connection.sendPacket(presence);
try {
Thread.sleep(3000);
} catch (Exception ex) {
ex.printStackTrace();
}
return connection;
}
于 2012-07-05T11:03:26.940 回答