ALL >> Computer-Programming >> View Article
Practical Implementation Of Client Server Model Using Tcp/ip

Server — Client Communication using TCP/IP
Server-client model is a communication model for sharing the resource and providing the service to different machines. The server isthe main system that provides the resources and different kinds of services when a client requests to use it.
1) First open the two notepads.
A] In the first notepad, type the code for server-side and save it as the same class name which you have provided in the code and with the extension .java
For Example, MyServer.java
import java.net.*; import java.io.*; class MyServer { public static void main(String args[])throws Exception { ServerSocket ss=new ServerSocket(3333); Socket s=ss.accept(); DataInputStream din=new DataInputStream(s.getInputStream()); DataOutputStream dout=new DataOutputStream(s.getOutputStream()); BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str=””,str2=””; while(!str.equals(“stop”)) { str=din.readUTF(); System.out.println(“client says: “+str); str2=br.readLine(); dout.writeUTF(str2); dout.flush(); } din.close(); s.close(); ss.close(); }
B] In the ...
... second notepad, type the code for the client side and save it as the same class name which you have provided in the code and with the extension .java
For Example, MyClient.java
import java.net.*; import java.io.*; class MyClient { public static void main(String args[])throws Exception { Socket s=new Socket(“localhost”,3333); DataInputStream din=new DataInputStream(s.getInputStream()); DataOutputStream dout=new DataOutputStream(s.getOutputStream()); BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str=””,str2=””; while(!str.equals(“stop”)) { str=br.readLine(); dout.writeUTF(str); dout.flush(); str2=din.readUTF(); System.out.println(“Server says: “+str2); } dout.close(); s.close(); } }
2) Output for the code:-
A] Server-Side :
B] Client-Side :
It is said that “Knowledge is Power” and Wisemonkeys(https://wisemonkeys.info/) is the ideal platform to prove this right where this blog was posted. Additionally, when knowledge is free it should be shared. Therefore, keeping this in mind Wisemonkeys an LMS platform is developed so that people can exchange their ideas, knowledge, and experiences for the wise Gen Z.
SIGN UP(https://wisemonkeys.info/) TODAY and upgrade your knowledge base.
Add Comment
Computer Programming Articles
1. How A Hospital Management System Can Improve Healthcare In ZambiaAuthor: Agness Ruth
2. "elevate Your Programming Skills With Lcc Computer Education's Expert Training"
Author: Khushi Gill
3. Business Analytics Courses In Bhopal – A Smart Career Move With Raj Institute Of Coding & Robotics
Author: Rohan Rajput
4. Migrating To Aws: Your Step-by-step Guide To Cloud Transformation
Author: Tecnolynx Global Pvt. Ltd.
5. Getting The Best Seo Firm For Your Business Success
Author: webtek Digiytal
6. Advantages Of The Best Fitness App Development Company In Dubai
Author: webtek Digiytal
7. Find Top Business Analytics Courses In Bhopal – Enroll Now
Author: Rohan Rajput
8. Custom Laravel Web Development: Why It’s The Smart Choice For Your Business
Author: Adarsh
9. Best Web Development Institutes In Bhopal Offering Java Courses
Author: Rohan Rajput
10. Top Web Development Institutes In Bhopal For Java Coding Classes
Author: Rohan Rajput
11. Why Every Business Needs Online Accounting Software In Zambia 2025
Author: Doris Rose
12. Best Web Development Institutes In Bhopal For Java Coding Classes
Author: Rohan Rajput
13. Master Ai Skills With Industry-leading Certifications
Author: EDCHART
14. The Ultimate Guide To Equipment Rental Software
Author: prestartr
15. The Enduring Importance Of Websites In The Ai Era
Author: Backend Brains