SlideShare una empresa de Scribd logo
1 de 20
Multi User Chat System Using
Java
• Multi User Chat System is an application through which
the user can communicate with other users connected in
the same network area (LAN). This works under any
operating system and is programmed in java.
• To establish a communication between the systems, we
need simple socket connections in order to connect them
in a network.
• Socket programming uses the client socket and server
socket methods to connect the local host to the named
host and port
• The communication between various users is done using
server client model.
• Several client machines are connected to their dedicated
server ports and communication is established.
• We use the lowest level of networking techniques
available in java, though there are many ways of
connecting client with the server.
• Hence, we need simple classes of networking package in
order to establish a server client prototype.
What is a server??
• A server is a system (software and suitable computer hardware)
that responds to requests across a computer network to
provide, or help to provide, a network service.
• Servers can be run on a dedicated computer, but many
networked computers are capable of hosting servers. In many
cases, a computer can provide several services and have several
servers running.
• Servers are computer programs running to serve the requests of
other programs, the clients. Thus, the server performs some
task on behalf of clients. The clients typically connect to the
server through the network but may run on the same computer.
In the context of Internet Protocol (IP) networking, a server is a
program that operates as a socket listener.
Client:
Client is a user system which uses its server to get its
program or action executed.
• To have a basic server client connection
through java programming language, we
need the concepts of java as such as,
• 1. Network packages
• 2. Thread classes
• 3. AWT tool kit
• 4. Event handling.
Step by step modules…
* Listener class
* While-Accept loop
* Per-Thread class
* While-Read/Write loop (Server side)
* Removing dead connections
* Client class
* While-Read/Write loop (Client side)
1.What does the server do?
- Stand alone program (JVM)
2.Listening to a port
After a server is ready, get ready to receive
incoming connections.
3. Sockets
- Communications pass through sockets. Socket
has an InputStream and an OutputStream.
• PORT
// Constructor and while-accept loop all in one.
public Server( int port ) throws IOException {
// All we have to do is listen
listen( port );
}
SERVER
// start listening on the port
ServerSocket ss = new ServerSocket( port );
// loop forever
while (true) {
// get a connection
Socket newSocket = ss.accept();
// deal with the connection
The main() routine
// Main routine
// Usage: java Server >port<
static public void main( String args[] ) throws Exception {
// Get the port # from the command line
int port = Integer.parseInt( args[0] );
// Create a Server object, which will automatically begin
// accepting connections.
new Server( port );
4.Serialization of incoming requests
- multithreading.
private void listen( int port ) throws IOException {
// Create the ServerSocket
ss = new ServerSocket( port );
// Tell the world we're ready to go
System.out.println( "Listening on "+ss );
// Keep accepting connections forever
while (true) {
// Grab the next incoming connection
Socket s = ss.accept();
// Tell the world we've got it
System.out.println( "Connection from "+s );
// Create a DataOutputStream for writing data to the
// other side
DataOutputStream dout = new DataOutputStream( s.getOutputStream() );
// Save this stream so we don't need to make it again
outputStreams.put( s, dout );
// Create a new thread for this connection, and then forget
// about it
new ServerThread( this, s );
}
}
5. The communications protocol
* When a user types something into their chat
window, their message will be sent as a
string through a DataOutputStream.
* When the server receives a message, through
a DataInputStream, it will send this same
message to all users, again as a string through a
DataOutputStream.
* The users will use a DataInputStream to
receive the message.
6. Removing dead connections
// The connection is closed for one reason or
another,
// so have the server dealing with it
server.removeConnection( socket );
Now, to the client side
1. Use an interface.
2. Connect to the server
// Connect to the server
try {
// Initiate the connection
socket = new Socket( host, port );
// We got a connection! Tell the world
System.out.println( "connected to "+socket );
// Let's grab the streams and create DataInput/Output streams
// from them
din = new DataInputStream( socket.getInputStream() );
dout = new DataOutputStream( socket.getOutputStream() );
// Start a background thread for receiving messages
new Thread( this ).start();
} catch( IOException ie ) { System.out.println( ie ); }
}
The While-Read/Write loop (Client side)
// Background thread runs this: show messages from
other window
public void run() {
try {
// Receive messages one-by-one, forever
while (true) {
// Get the next message
String message = din.readUTF();
// Print it to our text window
ta.append( message+"n" );
}
} catch( IOException ie ) { System.out.println( ie ); }
}
Pretty simple. Each incoming message gets
displayed in the text display window, and
then the loop goes back to waiting for the
next message.
Limitations:
Cant add a new client when a
communication is under process.
Queries please

Más contenido relacionado

La actualidad más candente

Online Examination System Report
Online Examination System ReportOnline Examination System Report
Online Examination System Report
Ankan Banerjee
 

La actualidad más candente (20)

SRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATIONSRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATION
 
Chat Application - Requirements Analysis & Design
Chat Application - Requirements Analysis & DesignChat Application - Requirements Analysis & Design
Chat Application - Requirements Analysis & Design
 
Chat server
Chat server Chat server
Chat server
 
Social messenger introduction
Social messenger introductionSocial messenger introduction
Social messenger introduction
 
Multicast chat with file and desktop sharing
Multicast chat with file and desktop sharingMulticast chat with file and desktop sharing
Multicast chat with file and desktop sharing
 
Chat application with Azure SignalR Service
Chat application with Azure SignalR ServiceChat application with Azure SignalR Service
Chat application with Azure SignalR Service
 
Online quiz system
Online quiz systemOnline quiz system
Online quiz system
 
Chat Application | RSD
Chat Application | RSDChat Application | RSD
Chat Application | RSD
 
Online Quiz System Project Report ppt
Online Quiz System Project Report pptOnline Quiz System Project Report ppt
Online Quiz System Project Report ppt
 
Multimedia networking
Multimedia networkingMultimedia networking
Multimedia networking
 
Online quiz system
Online quiz systemOnline quiz system
Online quiz system
 
GO BACK N PROTOCOL
GO BACK N PROTOCOLGO BACK N PROTOCOL
GO BACK N PROTOCOL
 
project
projectproject
project
 
Chat Application [Full Documentation]
Chat Application [Full Documentation]Chat Application [Full Documentation]
Chat Application [Full Documentation]
 
Online Quiz System Project PPT
Online Quiz System Project PPTOnline Quiz System Project PPT
Online Quiz System Project PPT
 
Online Quiz System Project Report
Online Quiz System Project Report Online Quiz System Project Report
Online Quiz System Project Report
 
Minor project Report for "Quiz Application"
Minor project Report for "Quiz Application"Minor project Report for "Quiz Application"
Minor project Report for "Quiz Application"
 
Online Quiz System
Online Quiz SystemOnline Quiz System
Online Quiz System
 
Online Examination System Report
Online Examination System ReportOnline Examination System Report
Online Examination System Report
 
Lan chat system
Lan chat systemLan chat system
Lan chat system
 

Similar a Multi user chat system using java

Mail Server Project Report
Mail Server Project ReportMail Server Project Report
Mail Server Project Report
Kavita Sharma
 
How a network connection is created A network connection is initi.pdf
How a network connection is created A network connection is initi.pdfHow a network connection is created A network connection is initi.pdf
How a network connection is created A network connection is initi.pdf
arccreation001
 
04 android
04 android04 android
04 android
guru472
 

Similar a Multi user chat system using java (20)

Mail Server Project Report
Mail Server Project ReportMail Server Project Report
Mail Server Project Report
 
28 networking
28  networking28  networking
28 networking
 
Sockets
SocketsSockets
Sockets
 
5_6278455688045789623.pptx
5_6278455688045789623.pptx5_6278455688045789623.pptx
5_6278455688045789623.pptx
 
Java networking programs - theory
Java networking programs - theoryJava networking programs - theory
Java networking programs - theory
 
Network programming in Java
Network programming in JavaNetwork programming in Java
Network programming in Java
 
Networking in java, Advanced programming
Networking in java, Advanced programmingNetworking in java, Advanced programming
Networking in java, Advanced programming
 
Java socket programming
Java socket programmingJava socket programming
Java socket programming
 
How a network connection is created A network connection is initi.pdf
How a network connection is created A network connection is initi.pdfHow a network connection is created A network connection is initi.pdf
How a network connection is created A network connection is initi.pdf
 
Java Networking
Java NetworkingJava Networking
Java Networking
 
Advanced Java Topics
Advanced Java TopicsAdvanced Java Topics
Advanced Java Topics
 
Socket Programming - nitish nagar
Socket Programming - nitish nagarSocket Programming - nitish nagar
Socket Programming - nitish nagar
 
A.java
A.javaA.java
A.java
 
Java seminar.pptx
Java seminar.pptxJava seminar.pptx
Java seminar.pptx
 
Linux Inter Process Communication
Linux Inter Process CommunicationLinux Inter Process Communication
Linux Inter Process Communication
 
Network Programming-Python-13-8-2023.pptx
Network Programming-Python-13-8-2023.pptxNetwork Programming-Python-13-8-2023.pptx
Network Programming-Python-13-8-2023.pptx
 
Md13 networking
Md13 networkingMd13 networking
Md13 networking
 
Socket
SocketSocket
Socket
 
04 android
04 android04 android
04 android
 
Java adv
Java advJava adv
Java adv
 

Último

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Último (20)

MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 

Multi user chat system using java

  • 1. Multi User Chat System Using Java
  • 2. • Multi User Chat System is an application through which the user can communicate with other users connected in the same network area (LAN). This works under any operating system and is programmed in java. • To establish a communication between the systems, we need simple socket connections in order to connect them in a network. • Socket programming uses the client socket and server socket methods to connect the local host to the named host and port
  • 3. • The communication between various users is done using server client model. • Several client machines are connected to their dedicated server ports and communication is established. • We use the lowest level of networking techniques available in java, though there are many ways of connecting client with the server. • Hence, we need simple classes of networking package in order to establish a server client prototype.
  • 4. What is a server?? • A server is a system (software and suitable computer hardware) that responds to requests across a computer network to provide, or help to provide, a network service. • Servers can be run on a dedicated computer, but many networked computers are capable of hosting servers. In many cases, a computer can provide several services and have several servers running. • Servers are computer programs running to serve the requests of other programs, the clients. Thus, the server performs some task on behalf of clients. The clients typically connect to the server through the network but may run on the same computer. In the context of Internet Protocol (IP) networking, a server is a program that operates as a socket listener.
  • 5.
  • 6. Client: Client is a user system which uses its server to get its program or action executed.
  • 7. • To have a basic server client connection through java programming language, we need the concepts of java as such as, • 1. Network packages • 2. Thread classes • 3. AWT tool kit • 4. Event handling.
  • 8.
  • 9. Step by step modules… * Listener class * While-Accept loop * Per-Thread class * While-Read/Write loop (Server side) * Removing dead connections * Client class * While-Read/Write loop (Client side)
  • 10. 1.What does the server do? - Stand alone program (JVM) 2.Listening to a port After a server is ready, get ready to receive incoming connections. 3. Sockets - Communications pass through sockets. Socket has an InputStream and an OutputStream.
  • 11. • PORT // Constructor and while-accept loop all in one. public Server( int port ) throws IOException { // All we have to do is listen listen( port ); } SERVER // start listening on the port ServerSocket ss = new ServerSocket( port ); // loop forever while (true) { // get a connection Socket newSocket = ss.accept(); // deal with the connection
  • 12. The main() routine // Main routine // Usage: java Server >port< static public void main( String args[] ) throws Exception { // Get the port # from the command line int port = Integer.parseInt( args[0] ); // Create a Server object, which will automatically begin // accepting connections. new Server( port );
  • 13. 4.Serialization of incoming requests - multithreading.
  • 14. private void listen( int port ) throws IOException { // Create the ServerSocket ss = new ServerSocket( port ); // Tell the world we're ready to go System.out.println( "Listening on "+ss ); // Keep accepting connections forever while (true) { // Grab the next incoming connection Socket s = ss.accept(); // Tell the world we've got it System.out.println( "Connection from "+s ); // Create a DataOutputStream for writing data to the // other side DataOutputStream dout = new DataOutputStream( s.getOutputStream() ); // Save this stream so we don't need to make it again outputStreams.put( s, dout ); // Create a new thread for this connection, and then forget // about it new ServerThread( this, s ); } }
  • 15. 5. The communications protocol * When a user types something into their chat window, their message will be sent as a string through a DataOutputStream. * When the server receives a message, through a DataInputStream, it will send this same message to all users, again as a string through a DataOutputStream. * The users will use a DataInputStream to receive the message.
  • 16. 6. Removing dead connections // The connection is closed for one reason or another, // so have the server dealing with it server.removeConnection( socket );
  • 17. Now, to the client side 1. Use an interface. 2. Connect to the server // Connect to the server try { // Initiate the connection socket = new Socket( host, port ); // We got a connection! Tell the world System.out.println( "connected to "+socket ); // Let's grab the streams and create DataInput/Output streams // from them din = new DataInputStream( socket.getInputStream() ); dout = new DataOutputStream( socket.getOutputStream() ); // Start a background thread for receiving messages new Thread( this ).start(); } catch( IOException ie ) { System.out.println( ie ); } }
  • 18. The While-Read/Write loop (Client side) // Background thread runs this: show messages from other window public void run() { try { // Receive messages one-by-one, forever while (true) { // Get the next message String message = din.readUTF(); // Print it to our text window ta.append( message+"n" ); } } catch( IOException ie ) { System.out.println( ie ); } }
  • 19. Pretty simple. Each incoming message gets displayed in the text display window, and then the loop goes back to waiting for the next message. Limitations: Cant add a new client when a communication is under process.