如何使用smack库来构建客户端应用程序,以便在接收消息时收到消息?

时间:2012-04-25 09:57:45

标签: java xmpp smack

我正在使用此代码,我使用smack库连接到Google服务器。但问题是我不知道如何保持代码运行,以便我可以继续发送和接收消息。请真好为了帮助我。我复制粘贴代码:

// connect to gtalk server
ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, "gmail.com");
XMPPConnection connection = new XMPPConnection(connConfig);
connection.connect();

// login with username and password
connection.login("camel.test.1", "secret");

// set presence status info
Presence presence = new Presence(Presence.Type.available);
connection.sendPacket(presence);

// send a message to somebody
Message msg = new Message("xxx.xxx@gmail.com", Message.Type.chat);
msg.setBody("hello");
connection.sendPacket(msg);

connection.disconnect();

请注意发送邮件可以正常使用此代码。让我知道我需要在同一代码中进行的修改,以便我可以将它用于发送和接收邮件。

1 个答案:

答案 0 :(得分:0)

  • 不要让您的申请终止。
  • 不要断开连接。
  • 注册PacketListener以收听传入的消息。