├── .idea ├── .gitignore ├── artifacts │ └── LiveChat_jar.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── LiveChat.iml ├── README.md ├── lib ├── commons-codec-1.15.jar ├── mysql-connector-java-8.0.21.jar └── protobuf-java-3.11.4.jar ├── livechat.sql └── src └── pers └── giyn └── LiveChat ├── Client.java ├── GUI ├── Login.java ├── assets │ ├── blackFile.png │ ├── icon.png │ ├── logo.png │ └── whiteFile.png ├── chat │ ├── ChattingGUI.java │ ├── ChattingPanel.java │ ├── LeftBubble.java │ └── RightBubble.java ├── friend │ ├── Friend.java │ └── FriendGUI.java └── utils │ └── Utils.java ├── Server.java ├── client ├── ClientBusinesses.java ├── UserController.java ├── chattingRecord │ ├── 01 │ │ ├── 02.dat │ │ ├── 03.dat │ │ └── files │ │ │ └── unavel.mp3 │ ├── 02 │ │ ├── 01.dat │ │ └── files │ │ │ ├── sample_submission.csv │ │ │ └── tree.csv │ └── 03 │ │ ├── 01.dat │ │ └── files │ │ ├── tree.csv │ │ └── wine.csv ├── file │ ├── FileFolder.java │ └── chattingRecord │ │ ├── ChattingRecord.java │ │ └── ChattingRecordManager.java └── utils │ └── Utils.java └── server ├── ServerBusinesses.java ├── database └── MySqlLoader.java ├── user ├── OnlineUser.java ├── User.java └── UsersContainer.java └── utils └── Utils.java /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/artifacts/LiveChat_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/artifacts/LiveChat_jar.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LiveChat.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/LiveChat.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/README.md -------------------------------------------------------------------------------- /lib/commons-codec-1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/lib/commons-codec-1.15.jar -------------------------------------------------------------------------------- /lib/mysql-connector-java-8.0.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/lib/mysql-connector-java-8.0.21.jar -------------------------------------------------------------------------------- /lib/protobuf-java-3.11.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/lib/protobuf-java-3.11.4.jar -------------------------------------------------------------------------------- /livechat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/livechat.sql -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/Client.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/Login.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/assets/blackFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/assets/blackFile.png -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/assets/icon.png -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/assets/logo.png -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/assets/whiteFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/assets/whiteFile.png -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/chat/ChattingGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/chat/ChattingGUI.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/chat/ChattingPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/chat/ChattingPanel.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/chat/LeftBubble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/chat/LeftBubble.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/chat/RightBubble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/chat/RightBubble.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/friend/Friend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/friend/Friend.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/friend/FriendGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/friend/FriendGUI.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/GUI/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/GUI/utils/Utils.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/Server.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/ClientBusinesses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/ClientBusinesses.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/UserController.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/01/02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/01/02.dat -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/01/03.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/01/03.dat -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/01/files/unavel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/01/files/unavel.mp3 -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/02/01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/02/01.dat -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/02/files/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/02/files/sample_submission.csv -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/02/files/tree.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/02/files/tree.csv -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/03/01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/03/01.dat -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/03/files/tree.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/03/files/tree.csv -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/chattingRecord/03/files/wine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/chattingRecord/03/files/wine.csv -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/file/FileFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/file/FileFolder.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/file/chattingRecord/ChattingRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/file/chattingRecord/ChattingRecord.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/file/chattingRecord/ChattingRecordManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/file/chattingRecord/ChattingRecordManager.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/client/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/client/utils/Utils.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/ServerBusinesses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/ServerBusinesses.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/database/MySqlLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/database/MySqlLoader.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/user/OnlineUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/user/OnlineUser.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/user/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/user/User.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/user/UsersContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/user/UsersContainer.java -------------------------------------------------------------------------------- /src/pers/giyn/LiveChat/server/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/LiveChat/HEAD/src/pers/giyn/LiveChat/server/utils/Utils.java --------------------------------------------------------------------------------