近公司项目需要用到即时通讯功能,经过调研发现openfire+spark+smack可以实现。在网上找了很久,资料都十分有限,即使有些朋友实现了也说的不清不楚。于是决定自己研究,耗时一周的时间实现了文字通讯和文件传输的功能。现发帖分享给有需要的朋友,也希望大家能够把自己的资料都分享出来,不要敝扫自珍...
分类:
其他好文 时间:
2014-09-11 13:49:01
阅读次数:
170
/**
* Sets the port of the local Socks5 proxy. Default is 7777. If you set the port to a negative
* value Smack tries the absolute value and all following until it finds an open port.
...
分类:
其他好文 时间:
2014-09-07 03:18:54
阅读次数:
250
/**
* Sets the port of the local Socks5 proxy. Default is 7777. If you set the port to a negative
* value Smack tries the absolute value and all following until it finds an open port.
...
分类:
其他好文 时间:
2014-09-07 03:18:44
阅读次数:
207
/**
* Loads the configuration from the smack-config.xml file.
*
* So far this means that:
* 1) a set of classes will be loaded in order to execute their static init block
...
分类:
其他好文 时间:
2014-09-07 02:14:04
阅读次数:
193
openfire是一个即时通讯服务器,也称之为即时通讯平台。它是基于XMPP协议的,大家所熟悉的通讯软件QQ、MSN和Gtalk等等,其中Gtalk就是基于XMPP协议的实现。
在即时通讯中往往因为需要保存一些状态或者数据所以不能采用点对点通讯,而是需要搭建服务器来转发。
下载地址:http://www.igniterealtime.org/downloads/index.jsp
下载完...
分类:
其他好文 时间:
2014-09-05 10:04:11
阅读次数:
193
由于XMPP不支持群聊很多本地化的服务, 针对Openfire开发插件解决问题: Message 扩展: Message videoMsg = new Message(); VideoChatRTP videoXml = new VideoChatRTP(); //扩展类型 videoXml.setVideoType(Vi...
分类:
其他好文 时间:
2014-09-04 12:01:59
阅读次数:
169
在研究Smack的源代码的时候,我对它的连接Connection以及派生类XMPPConnection的关注是最多的,因为一个即时通信程序,它的网络模块必是它的核心。而我很在乎它是如何实现的。
在收发数据包的时候,我看到了队列的身影。BlockingQueue和ArrayBlockingQueue。所以,我觉得用到什么然后去查阅,去记录,这种方法是比较高效率的。
BlockingQueue是在...
分类:
移动开发 时间:
2014-09-03 16:57:37
阅读次数:
237
Smack可用于XMPP客户端的开发,下载Smack,将相关jar文件导入后,即可以开始XMPP客户端的开发。以下代码实现了客户端连接Tigase服务器,并根据用户名和密码登录。package Xmpp;import org.jivesoftware.smack.ConnectionConfigur...
分类:
其他好文 时间:
2014-09-01 17:24:43
阅读次数:
199
昨天讲了Openfire的搭建和配置,今天来讲一下Smack。如果对如何搭建和配置Openfire的,可以参考Openfire/XMPP学习之——Openfire的安装、配置。 Smack是一个开源,易于使用的XMPP客户端类库。Smack API, 是一个 Java 的XMPP Client...
分类:
其他好文 时间:
2014-08-27 10:39:17
阅读次数:
278
http://www.bitscn.com/os/linux/200904/158771.html安全 Linux 容器实现指南 轻量级容器 又称作 Virtual Private Servers (VPS) 或 Jails,它们是经常用于限制不可信应用程序或用户的工具。但是最近构造的轻量级容...
分类:
系统相关 时间:
2014-08-27 10:33:27
阅读次数:
243