9

我试图设置在线模式,但它不能通过名册工作。我运行了这段代码并检查了我的本地主机服务器,该模式仍然“可用”而不是“请勿打扰”。

final Connection connection = new XMPPConnection("xxx.xxx.x.xx");

connection.connect();
connection.login("hieugioi@hieund", "123456");

final Roster roster = connection.getRoster();           
Presence p = roster.getPresence("hieugioi@hieund");
p.setPriority(128);
p.setMode(Mode.dnd);
4

1 回答 1

22

因为您没有将 Presence 数据包发送到服务器。组装好 Presence 数据包后,您需要发送它。例如:

Presence p = new Presence(available, "I am busy", 42, Mode.dnd);
connection.sendStanza(p);

另请参阅:Smack - 入门;“读取和写入数据包”部分

于 2012-12-18T22:25:51.027 回答