Smack使用Openfire的广播功能

使用openfire的广播功能首先需要在插件的页面里安装broadcast,然后通过Smack就可以发送广播了.
Connection connection = new XMPPConnection("localhost");
connection.connect();
connection.login("admin", "123");
Message m = new Message("[email protected]");
m.setBody("this is a broadcast.");
connection.sendPacket(m);
 

你可能感兴趣的:(openfire)