資源簡介
該模塊分為以下幾個部分,分別是注冊、登陸、公聊、私聊、文件傳輸、下線。用戶注冊后,再登陸界面進行登錄,登陸成功后即可開始聊天。中間三個部分的主要實現(xiàn)就是將用戶希望發(fā)送的消息,通過封裝,發(fā)送給服務器。把服務器發(fā)送來的消息,根據(jù)按字節(jié)拆分之后,進行處理。通過這種方法,完成公聊、私聊和文件傳輸?shù)墓δ堋?img width=510 src=http://www.sh-liguang.com/pic/187911.jpg />
代碼片段和文件信息
package?com.cauc.chat;
public?class?ChatMessage?extends?Message{
private?String?msgContent;
public?ChatMessage(String?srcUser?String?dstUser?String?msgContent)?{
super(srcUser?dstUser);
this.msgContent?=?msgContent;
}
public?String?getMsgContent()?{
return?msgContent;
}
public?void?setMsgContent(String?msgContent)?{
this.msgContent?=?msgContent;
}
public?boolean?isPubChatMessage()?{//公聊消息目的User為空
return?getDstUser().equals(““);
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-04-19?11:52??ChatRoom1\
?????文件????????1355??2017-05-01?15:51??ChatRoom1\.classpath
?????文件?????????385??2018-04-19?11:52??ChatRoom1\.project
?????目錄???????????0??2018-04-19?11:52??ChatRoom1\.settings\
?????文件?????????598??2017-04-18?18:38??ChatRoom1\.settings\org.eclipse.jdt.core.prefs
?????文件?????????263??2017-05-06?22:42??ChatRoom1\DesKey.xm
?????目錄???????????0??2018-04-19?12:08??ChatRoom1\USERDB\
?????文件????????3991??2017-03-22?00:52??ChatRoom1\USERDB\derby.log
?????目錄???????????0??2018-04-19?11:52??ChatRoom1\USERDB\log\
?????文件??????????48??2018-04-19?12:08??ChatRoom1\USERDB\log\log.ctrl
?????文件?????1048576??2018-04-19?12:08??ChatRoom1\USERDB\log\log1.dat
?????文件??????????48??2018-04-19?12:08??ChatRoom1\USERDB\log\logmirror.ctrl
?????目錄???????????0??2018-04-19?11:52??ChatRoom1\USERDB\seg0\
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c10.dat
?????文件????????8192??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c101.dat
?????文件????????8192??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c111.dat
?????文件????????8192??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c121.dat
?????文件????????8192??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c130.dat
?????文件????????8192??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c141.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c150.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c161.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c171.dat
?????文件???????32768??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c180.dat
?????文件???????16384??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c191.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1a1.dat
?????文件???????16384??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1b1.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1c0.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1d1.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1e0.dat
?????文件????????8192??2017-03-22?00:05??ChatRoom1\USERDB\seg0\c1f1.dat
?????文件???????28672??2017-04-21?20:13??ChatRoom1\USERDB\seg0\c20.dat
............此處省略140個文件信息
評論
共有 條評論