要说这个聊天功能有多简单,大家看图就知道真相了:
⑤向服务器发送自己输入的消息
private var rtmpUrl:String = "rtmp://localhost/chatroom";
private var netConn:NetConnection = null;
protected function connectRed5(event:MouseEvent):void
{
//如果对象不存在,则创建对象
if(netConn == null){
netConn = new NetConnection();
}
//如果未与red5连接,则执行远程连接
if(!netConn.connected){
netConn.connect(rtmpUrl,txt_userName.text);
//指定连接client,方便red5调用当前客户端的方法
netConn.client = this;
netConn.addEventListener(NetStatusEvent.NET_STATUS,function connStatus(e:NetStatusEvent):void{
switch(e.info.code){
//连接成功
case "NetConnection.Connect.Success":
l_connStatus.text = "连接成功";
//调用服务器方法,获取在线用户列表
getOnlineListInfo();
break;
//服务器断开
case "NetConnection.Connect.Closed":
l_connStatus.text = "连接断开";
break;
//能连上,但被拒绝访问
case "NetConnection.Connect.Failed":
l_connStatus.text = "连接失败";
break;
default:
break;
}
});
}
}
public class NotifyAppConnectThread implements Runnable{ private IScope scope; private String userName; public NotifyAppConnectThread(IScope scope,String userName){ this.scope = scope; this.userName = userName; } @Override public void run() { //通知其它用户该用户上线 notifyAppConnect(scope,userName); } /** * Function : 通知其它客户,用户上线信息 * @author : bless<[email protected]> * @param scope */ private void notifyAppConnect(IScope scope,String userName){ //遍历所有链接到服务器的客户端 Collection<Set<IConnection>> col = scope.getConnections(); for (Set<IConnection> set : col) { for (IConnection iConnection : set) { //通知有所客户端上线用户信息 if(iConnection instanceof IServiceCapableConnection){ IServiceCapableConnection sc = (IServiceCapableConnection) iConnection; sc.invoke("otherConnection_msg", new Object[]{userName}); } } } } }
<bean id="web.handler" class="com.bless.app.ChatApplication" singleton="true" />
/** * 聊天室 核心类 */ public class ChatApplication extends ApplicationAdapter { //存储在线用户的Map对象 private Map<String,IConnection> onlineList = new HashMap<String,IConnection>(); final String USER_NAME = "userName"; final int MAX_ONLINE = 50; /** * 客户端连接成功时执行 */ @Override public boolean appConnect(IConnection arg0, Object[] arg1) { System.out.println(">>>>>>>>>>>>>>>>appConnect"); //用户首次连接server 时触发 if(!super.appConnect(arg0, arg1)){ return false; } //获取用户名 String userName = null; if(arg1!=null){ userName = arg1[0].toString().trim(); }else{ return false; } //检查在线人数 if(onlineList.size() >= MAX_ONLINE){ callClient(arg0,"超过最大在线人数,请稍后重试!"); return false; } //检查用户名是否重复 if(onlineList.containsKey(userName)||"".equals(userName)){ callClient(arg0,"用户名为空或已存在!"); return false; } //检查用户名长度 if(userName.length()>18){ callClient(arg0,"用户名长度不能超过18位!"); return false; } //将用户信息加入到Map中 onlineList.put(userName, arg0); //向客户端设置属性:userName arg0.getClient().setAttribute(USER_NAME, userName); //通知其它用户该用户上线 new Thread(new NotifyAppConnectThread(arg0.getScope(), userName)).start(); // notifyAppConnect(arg0.getScope(), userName); return true; } . . .............. }
②从服务器获取在线用户列表
那么从服务器获取在线用户列表就非常简单了,在每次flex接到用户上线下线通知时都会调用服务器方法:
/** * 【供red5调用的方法】 * 客户端与red5连接后,获取其它客户连接信息的方法 * */ public function otherConnection_msg(userName:String):void{ messageContent.text = messageContent.text + userName +" 上线啦!\r\n\r\n"; getOnlineListInfo(); } /** * [供red5调用的方法] * 服务器向客户端发送通知:有其它用户下线 * */ public function otherDisconnect_msg(userName:String):void{ messageContent.text = messageContent.text + userName +" 下线啦!\r\n\r\n"; getOnlineListInfo(); }
/** * 刷新在线用户列表 * */ private function getOnlineListInfo():void{ netConn.call(this.getOnlineList,new Responder(function result(coll:String):void{ var array:Array = coll.split("\r\n"); online_userlist.removeAll(); for each(var str:String in array){ var obj:Object = new Object(); obj.label = str; online_userlist.addItem(obj); } })); }
flex是通过远程调用服务器方法,所以在服务器端必须有一个对于获取在线用户集合的方法:
/** * Function : 获取用户列表 * @author : bless<[email protected]> * @return */ public String getOnlineList(){ StringBuffer sb = new StringBuffer(); //把用户列表数据取出来 Set<String> setUserName = onlineList.keySet(); for (String string : setUserName) { sb.append(string+"\r\n"); } return sb.toString(); }
③从服务器获取用户上线、下线通知
某个客户端离线时,服务器的appDisconnect会运行,在方法内处理该客户端资料清理同时通知给其它用户:
下面是java代码:
/** * 客户端断开连接时自动执行 */ @Override public void appDisconnect(IConnection arg0) { System.out.println(">>>>>>>>>>>>>>>>>>appDisconnect"); //清理离线用户的资料 onlineList.remove(arg0.getClient().getAttribute(USER_NAME)); //通知其它用户该用户离线 new Thread(new NotifyAppDisconnectThread(arg0.getScope(), arg0.getClient().getAttribute(USER_NAME).toString())).start(); // notifyAppDisconnect(arg0.getScope(),arg0.getClient().getAttribute(USER_NAME).toString()); super.appDisconnect(arg0); }
通知其它用户,我使用了多线程的形式,这样不至于影响主线程的效率:
public class NotifyAppDisconnectThread implements Runnable{ private IScope scope; private String userName; public NotifyAppDisconnectThread(IScope scope,String userName){ this.scope = scope; this.userName = userName; } @Override public void run() { notifyAppDisconnect(scope,userName); } /** * Function : 通知其它客户端,用户离线信息 * @author : bless<[email protected]> * @param scope * @param userName */ private void notifyAppDisconnect(IScope scope,String userName){ //遍历所有链接到服务器的客户端 Collection<Set<IConnection>> col = scope.getConnections(); for (Set<IConnection> set : col) { for (IConnection iConnection : set) { //通知有所客户端上线用户信息 if(iConnection instanceof IServiceCapableConnection){ IServiceCapableConnection sc = (IServiceCapableConnection) iConnection; sc.invoke("otherDisconnect_msg", new Object[]{userName}); } } } } }
④从服务器获得其他用户发送的消息内容
⑤向服务器发送消息内容
这两步操作紧密关系到一起,只有客户端调用服务器发送消息方法,服务器才会给所有客户端发送最新消息内容,在flex端通过sendMsg方法(此方法是flex调用red5)发送消息,getMsg方法(此方法是red5调用felx)获取消息:
/**
* 发送消息
* */
protected function sendMsg():void
{
netConn.call(this.sendMessage,new Responder(function result():void{
}),txt_msg.text);
//清空输入框
txt_msg.text = "";
}
/**
* 【供red5调用的方法】
* 获取消息
* */
public function getMsg(msg:String):void{
messageContent.text = messageContent.text + msg;
}
最后看服务器时如何发送消息的:
/** * Function : 发送消息 * @author : bless<[email protected]> * @param userName * @param message */ public void sendMessage(String message){ //获取当前请求的客户端信息 String userName_ = Red5.getConnectionLocal().getClient().getAttribute(USER_NAME).toString(); //封装信息内容 String msg = "<" +userName_ + "> " + sdf.format(new Date()) + "\r\n" + message +"\r\n\r\n"; Set<String> setUserName = onlineList.keySet(); for (String string : setUserName) { IConnection iConnection = onlineList.get(string); //通知有所客户端信息 if(iConnection instanceof IServiceCapableConnection){ IServiceCapableConnection sc = (IServiceCapableConnection) iConnection; sc.invoke("getMsg", new Object[]{msg}); } } }
至此一个简单的聊天程序就完成了,你可以尝试把flex编译生产的html、swf文件放到服务器部署,这样就可以在线访问了。
下面附代码源码。
red5版本:0.9.1
flex版本:4.0