- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://www.igniterealtime.org/projects/smack/
- 软件文档: http://www.igniterealtime.org/builds/smack/docs/latest/documentation/
软件介绍
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();