Posts

Showing posts from 2016

Java Chat Application or Java Messenger

Java Chat Messenger  with Source Code  If you want chat application in java you are at right place just reefer following java code to do your own java ChatApp. No worry about java packages, code construction and all just copy and paste the following code and enjoy java Messenger (Chat App). Requirements  Eclipse (Any version ) Java Jdk 6 n above  Operating system (Any Windows Mac or Linux)    Steps1 :   Make following java class ChatMessage Client ClientGUI  Server ServerGUI Make sure all class should be in (Ex:  Name.java)   Steps2: import following java class in your java IDE's. ************************************************************************************************ ChatMessage.java import java.io.*; public class ChatMessage implements Serializable {     protected static final long serialVersionUID = 1112122200L;     static final i...