Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 smack.jar。我可以使用它与 gtalk 连接。使用Roster.getentries() 我可以获得我的好友列表。但是我怎样才能将新朋友添加到我的好友列表中。是否有任何 API smack 暴露来添加新用户?
Roster.getentries()
谢谢
我一直在使用它在标准 XMPP 服务器中创建新联系人(不知道 gtalk):
Roster roster = xmppConnection.getRoster(); // jid: String, user: String, groups: String[] roster.createEntry(jid, user, groups);
在 XMPP 中,添加是添加到您的名册 + 订阅用户。更新只是将用户添加到您的名册中。记住细节。