我正在使用此代码,我使用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();
请注意发送邮件可以正常使用此代码。让我知道我需要在同一代码中进行的修改,以便我可以将它用于发送和接收邮件。