XMPP 客户端开发包,Smack 3.3 发布
jopen 11年前
Smack是一个开源,易于使用的XMPP(jabber) Java 客户端类库。
// Create a connection to the jabber.org server. Connection conn1 = new XMPPConnection("jabber.org"); conn1.connect(); // Create a connection to the jabber.org server on a specific port. ConnectionConfiguration config = new ConnectionConfiguration("jabber.org", 5222); Connection conn2 = new XMPPConnection(config); conn2.connect();
Smack 3.3 发布了,此版本已经解决大量的问题,包括新功能,支持多个协议扩展(XEP)和许多改进现有的功能。download.