* */
private void updateChatWindow(String username, Message msg) {
if (msg == null || msg.getBody() == null)
return;
Util.showDebugMsg("\nupdateChatWindow:\nusername:" + username);
ChatWindow chatWindow = chatWindowMap.get(username);
if (chatWindow == null)
createChatWindow(username, msg.getFrom());
// 已经建立了一个聊天窗口,则调用该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());
}