// 已经建立了一个聊天窗口,则调用该ChatWindow的处理接收消息的方法
chatWindow = chatWindowMap.get(username);
// Util.showDebugMsg("Msg:" + msg == null ? "NULL" : "NOT NULL");
// Util.showDebugMsg("chatWindow:" + chatWindow==null?"NULL" : "NOT NULL");
chatWindow.handleIncomingMsg(msg.getBody());
}
/**