├── QQ_Client ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── bin │ ├── qqClient │ │ ├── Service │ │ │ ├── ClientConnectThread.class │ │ │ ├── ClientConnectThreadManage.class │ │ │ ├── FileClinetService.class │ │ │ ├── MessageClientService.class │ │ │ └── UserClientService.class │ │ ├── Utils │ │ │ ├── MyObjectInputStream.class │ │ │ └── MyObjectOutputStream.class │ │ └── view │ │ │ ├── ChatFrame$1.class │ │ │ ├── ChatFrame$2.class │ │ │ ├── ChatFrame$3.class │ │ │ ├── ChatFrame$4.class │ │ │ ├── ChatFrame.class │ │ │ ├── LoginFrame.class │ │ │ ├── OnlineUserFrame$1.class │ │ │ ├── OnlineUserFrame$2.class │ │ │ ├── OnlineUserFrame$3.class │ │ │ ├── OnlineUserFrame.class │ │ │ ├── QQClientStart.class │ │ │ └── RegisterFrame.class │ └── qqCommon │ │ ├── Message.class │ │ ├── MessageType.class │ │ └── User.class ├── image │ ├── QQlogo.png │ ├── QQlogo4.png │ ├── headshot.png │ ├── loginBtn.png │ ├── registBtn.png │ └── sendBtn.png └── src │ ├── qqClient │ ├── Service │ │ ├── ClientConnectThread.java │ │ ├── ClientConnectThreadManage.java │ │ ├── FileClinetService.java │ │ ├── MessageClientService.java │ │ └── UserClientService.java │ ├── Utils │ │ ├── MyObjectInputStream.java │ │ └── MyObjectOutputStream.java │ └── view │ │ ├── ChatFrame.java │ │ ├── LoginFrame.java │ │ ├── OnlineUserFrame.java │ │ ├── QQClientStart.java │ │ └── RegisterFrame.java │ └── qqCommon │ ├── Message.java │ ├── MessageType.java │ └── User.java ├── QQ_Server ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── bin │ ├── qqCommon │ │ ├── Message.class │ │ ├── MessageType.class │ │ └── User.class │ └── qqServer │ │ ├── Utils │ │ ├── MyObjectInputStream.class │ │ └── MyObjectOutputStream.class │ │ ├── server │ │ ├── QQServer.class │ │ ├── SendToAllService.class │ │ ├── ServerConnectThread.class │ │ └── ServerConnectThreadManage.class │ │ └── view │ │ ├── ServerFrame$1$1.class │ │ ├── ServerFrame$1.class │ │ ├── ServerFrame$2.class │ │ ├── ServerFrame$3.class │ │ ├── ServerFrame.class │ │ └── ServerStart.class └── src │ ├── qqCommon │ ├── Message.java │ ├── MessageType.java │ └── User.java │ └── qqServer │ ├── Utils │ ├── MyObjectInputStream.java │ └── MyObjectOutputStream.java │ ├── server │ ├── QQServer.java │ ├── SendToAllService.java │ ├── ServerConnectThread.java │ └── ServerConnectThreadManage.java │ └── view │ ├── ServerFrame.java │ └── ServerStart.java └── 版本说明.md /QQ_Client/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/.classpath -------------------------------------------------------------------------------- /QQ_Client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/.project -------------------------------------------------------------------------------- /QQ_Client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Service/ClientConnectThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Service/ClientConnectThread.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Service/ClientConnectThreadManage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Service/ClientConnectThreadManage.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Service/FileClinetService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Service/FileClinetService.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Service/MessageClientService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Service/MessageClientService.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Service/UserClientService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Service/UserClientService.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Utils/MyObjectInputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Utils/MyObjectInputStream.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/Utils/MyObjectOutputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/Utils/MyObjectOutputStream.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/ChatFrame$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/ChatFrame$1.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/ChatFrame$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/ChatFrame$2.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/ChatFrame$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/ChatFrame$3.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/ChatFrame$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/ChatFrame$4.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/ChatFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/ChatFrame.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/LoginFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/LoginFrame.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/OnlineUserFrame$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/OnlineUserFrame$1.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/OnlineUserFrame$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/OnlineUserFrame$2.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/OnlineUserFrame$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/OnlineUserFrame$3.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/OnlineUserFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/OnlineUserFrame.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/QQClientStart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/QQClientStart.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqClient/view/RegisterFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqClient/view/RegisterFrame.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqCommon/Message.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqCommon/Message.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqCommon/MessageType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqCommon/MessageType.class -------------------------------------------------------------------------------- /QQ_Client/bin/qqCommon/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/bin/qqCommon/User.class -------------------------------------------------------------------------------- /QQ_Client/image/QQlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/QQlogo.png -------------------------------------------------------------------------------- /QQ_Client/image/QQlogo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/QQlogo4.png -------------------------------------------------------------------------------- /QQ_Client/image/headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/headshot.png -------------------------------------------------------------------------------- /QQ_Client/image/loginBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/loginBtn.png -------------------------------------------------------------------------------- /QQ_Client/image/registBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/registBtn.png -------------------------------------------------------------------------------- /QQ_Client/image/sendBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/image/sendBtn.png -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Service/ClientConnectThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Service/ClientConnectThread.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Service/ClientConnectThreadManage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Service/ClientConnectThreadManage.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Service/FileClinetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Service/FileClinetService.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Service/MessageClientService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Service/MessageClientService.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Service/UserClientService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Service/UserClientService.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Utils/MyObjectInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Utils/MyObjectInputStream.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/Utils/MyObjectOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/Utils/MyObjectOutputStream.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/view/ChatFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/view/ChatFrame.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/view/LoginFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/view/LoginFrame.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/view/OnlineUserFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/view/OnlineUserFrame.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/view/QQClientStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/view/QQClientStart.java -------------------------------------------------------------------------------- /QQ_Client/src/qqClient/view/RegisterFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqClient/view/RegisterFrame.java -------------------------------------------------------------------------------- /QQ_Client/src/qqCommon/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqCommon/Message.java -------------------------------------------------------------------------------- /QQ_Client/src/qqCommon/MessageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqCommon/MessageType.java -------------------------------------------------------------------------------- /QQ_Client/src/qqCommon/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Client/src/qqCommon/User.java -------------------------------------------------------------------------------- /QQ_Server/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/.classpath -------------------------------------------------------------------------------- /QQ_Server/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/.project -------------------------------------------------------------------------------- /QQ_Server/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /QQ_Server/bin/qqCommon/Message.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqCommon/Message.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqCommon/MessageType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqCommon/MessageType.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqCommon/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqCommon/User.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/Utils/MyObjectInputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/Utils/MyObjectInputStream.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/Utils/MyObjectOutputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/Utils/MyObjectOutputStream.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/server/QQServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/server/QQServer.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/server/SendToAllService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/server/SendToAllService.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/server/ServerConnectThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/server/ServerConnectThread.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/server/ServerConnectThreadManage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/server/ServerConnectThreadManage.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerFrame$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerFrame$1$1.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerFrame$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerFrame$1.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerFrame$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerFrame$2.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerFrame$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerFrame$3.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerFrame.class -------------------------------------------------------------------------------- /QQ_Server/bin/qqServer/view/ServerStart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/bin/qqServer/view/ServerStart.class -------------------------------------------------------------------------------- /QQ_Server/src/qqCommon/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqCommon/Message.java -------------------------------------------------------------------------------- /QQ_Server/src/qqCommon/MessageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqCommon/MessageType.java -------------------------------------------------------------------------------- /QQ_Server/src/qqCommon/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqCommon/User.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/Utils/MyObjectInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/Utils/MyObjectInputStream.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/Utils/MyObjectOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/Utils/MyObjectOutputStream.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/server/QQServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/server/QQServer.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/server/SendToAllService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/server/SendToAllService.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/server/ServerConnectThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/server/ServerConnectThread.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/server/ServerConnectThreadManage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/server/ServerConnectThreadManage.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/view/ServerFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/view/ServerFrame.java -------------------------------------------------------------------------------- /QQ_Server/src/qqServer/view/ServerStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/QQ_Server/src/qqServer/view/ServerStart.java -------------------------------------------------------------------------------- /版本说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-XCS/JavaChat/HEAD/版本说明.md --------------------------------------------------------------------------------