Click here to Skip to main content
15,878,748 members
Articles / Programming Languages / Java

A Java Chat Application

Rate me:
Please Sign up or sign in to vote.
4.82/5 (73 votes)
11 Sep 2013CPOL3 min read 591.1K   93.7K   67   131
A chat application which can handle multiple users at the same time.

Sample Image

Introduction

In this article I am demonstrating a chat application which can handle multiple users at the same time. It also supports file transfer.

It is entirely based on Java and consists of two parts: jMessenger (client application) and jServer (server application).

Features

  1. Handles multiple users at the same time
  2. Support for both public and private messages
  3. User signup and login available 
  4. Support for file transfer

Using the code

Run the jar files jMessenger.jar and jServer.jar and do the following:

  1. On jServer select "data.xml" as database file. This file contains usernames and passwords.
  2. On jMessenger select "History.xml" as history file. This file is used to save chat history.
  3. In many cases, if jMessenger cannot find the server then adjust firewall to give it network access.

Both applications are written in Netbeans and you can import source files in Netbeans to view and edit them.

Message structure

Each message in jMessenger has four fields:

  • type: This can be set to message, login, newuser, etc.
  • sender: The username of sender
  • content: Actual content of the message
  • Recipient: Username of recipient of the message

jServer

There are two main classes in jServer for handling connections and messages. On startup the SocketServer runs in a separate thread. The job of SocketServer is to wait for connections and for each connection start a new thread ServerThread. Once the connection is established, ServerThread will listen for any messages and hand it over to SocketServer to process. Also it will forward messages from other users to the connected user.

Java
// In ServerThread read the incoming message and hand it to SocketServer

Message msg = (Message) streamIn.readObject();
server.handle(ID, msg);
.......


// In SocketServer process the messages based on their type

public synchronized void handle(int ID, Message msg){  
	if(msg.type.equals("login")){
		....
	}
	else id(msg.type.equals("message")){
		if(msg.recipient.equals("All")){ Announce("message", msg.sender, msg.content); }
		else{
			// Find the thread of recipient and forward it to him
		}
	}
.......

jMessenger

jMessenger first connects to the jServer, specified by its IP-address and port number. Arriving messages are then displayed on message board along with their senders.

When a user wants to send a file, first his request is sent via a message of type upload_req. The recipient then does the following:

  1. The recipient side sends its reply in a message of type upload_res
  2. If request is accepted then the recipient opens a new port
  3. For positive reply, recipient's IP address and port number is sent back
  4. The sender, on receiving positive reply connects to this socket and starts file upload

An advantage of this approach is that the clients can chat and transfer files at the same time. Unlike messages, files do not go through jServer.

Java
// On recipient side, start a new thread for download

Download dwn = new Download(....);
Thread t = new Thread(dwn);
t.start();
send(new Message("upload_res", ui.username, dwn.port, msg.sender));
// Reply to sender with IP address and port number
.........

// On sender side, start a new thread for file upload

// Connect to the port specified in reply
Upload upl = new Upload(addr, port, ui.file, ui);
Thread t = new Thread(upl);
t.start();

Update

There was much confusion about two issues regarding the project. I would like to clarify that here. 

1. Chat History is not complete. The project's main purpose was to demonstrate networking concepts and due to deadline limitation it was not completed.

2. Many people are confused why chat over different networks is not possible. To understand this, take the example of any web-server. For any browser to connect to a web-server, this server needs to have a global IP address so that it is visible on the Internet. Similarly jServer also is a application server and for chat over two different networks (say a campus LAN and DSL at your house), it also need to be run on a computer with a global IP address. 

About this project 

This is a class project which I wanted to share with others. Source code is licensed under The Code Project Open License (CPOL). The purpose of this project was to demonstrate Java sockets, so the whole History feature is not implemented as good as I would have liked. If this article proves to be any help, please let me know.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionTCP/UDP Pin
Member 1246746717-Apr-16 23:57
Member 1246746717-Apr-16 23:57 
AnswerRe: TCP/UDP Pin
Member 1351481910-Nov-17 11:27
Member 1351481910-Nov-17 11:27 
QuestionRegarding chat Pin
Member 1169767817-Apr-16 23:28
Member 1169767817-Apr-16 23:28 
Questionrunning this program Pin
Member 124341193-Apr-16 13:43
Member 124341193-Apr-16 13:43 
QuestionRegarding file transfer over lan Pin
Member 1206533028-Mar-16 14:56
Member 1206533028-Mar-16 14:56 
Questionhow to enhance it by compressing those upload file? Pin
Member 1212533624-Nov-15 1:00
Member 1212533624-Nov-15 1:00 
Questionchat app connection with other computers Pin
Member 121255129-Nov-15 5:26
Member 121255129-Nov-15 5:26 
Questionsource code compile error Pin
Syed Habib Ullah Shah20-Oct-15 4:32
Syed Habib Ullah Shah20-Oct-15 4:32 
GeneralMy vote of 5 Pin
Member 119728619-Sep-15 20:23
Member 119728619-Sep-15 20:23 
Questionchat app Pin
Member 1186923528-Jul-15 5:32
Member 1186923528-Jul-15 5:32 
Questionamazing dude........... Pin
Member 1185403528-Jul-15 1:22
Member 1185403528-Jul-15 1:22 
QuestionA Question (Commands) Pin
Itachai30-Jun-15 9:35
Itachai30-Jun-15 9:35 
QuestionOh! nice app Pin
Member 1167652213-May-15 20:20
Member 1167652213-May-15 20:20 
Questionto run the code Pin
Member 1165177129-Apr-15 7:56
Member 1165177129-Apr-15 7:56 
Questionjava chat application Pin
Member 1152932318-Mar-15 3:36
Member 1152932318-Mar-15 3:36 
AnswerRe: java chat application Pin
Member 117547369-Jun-15 19:55
Member 117547369-Jun-15 19:55 
QuestionAbout running the code Pin
Member 114503898-Mar-15 6:45
Member 114503898-Mar-15 6:45 
QuestionChat Server Pin
Ashish Gadpayle4-Mar-15 16:44
Ashish Gadpayle4-Mar-15 16:44 
Questionhelp urgent Pin
Member 113532443-Mar-15 4:38
Member 113532443-Mar-15 4:38 
QuestionUML diagram Pin
Member 1147509126-Feb-15 7:25
Member 1147509126-Feb-15 7:25 
BugProblem with FILE TRANSFER!! :( Pin
Member 1127954526-Feb-15 0:26
Member 1127954526-Feb-15 0:26 
Questionunable to run Pin
Member 1122456925-Feb-15 19:35
Member 1122456925-Feb-15 19:35 
Questionunable to browse history file Pin
Member 1121270124-Feb-15 18:53
Member 1121270124-Feb-15 18:53 
QuestionHelp Pin
Member 1137485013-Feb-15 10:17
Member 1137485013-Feb-15 10:17 
QuestionMultiGroup Application Pin
Member 1132421325-Jan-15 19:43
Member 1132421325-Jan-15 19:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.