123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

Socket Programming In Java

Profile Picture
By Author: Wisemonkeys
Total Articles: 277
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

Java Socket programming is used to communicate between applications running on different JRE.
Java Socket programming can be connection-oriented or connection-less.
Socket and ServerSocket classes are used for connection-oriented socket programming and DatagramSocket and DatagramPacket classes are used for connection-less socket programming.
The client in socket programming must know two pieces of information:1) the server's IP Address and 2) the Port number.
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, MyServer1.java
import java.io.*; import java.net.*; public class MyServer1 { public static void main(String[] args) { try { ServerSocket ss=new ServerSocket(6666); Socket s=ss.accept();//establishes connection DataInputStream dis=new DataInputStream(s.getInputStream()); String str=(String)dis.readUTF(); System.out.println("message= "+str); System.out.println("message= "+str); System.out.println("message= "+str); ss.close(); } catch(Exception ...
... e) { System.out.println(e); } } }
B] In 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, MyClient1.java
import java.io.*; import java.net.*; public class MyClient1 { public static void main(String[] args) { try { Socket s=new Socket("localhost",6666); DataOutputStream dout=new DataOutputStream(s.getOutputStream()); dout.writeUTF("Hello Server"); dout.flush(); dout.close(); s.close(); } catch(Exception e) { System.out.println(e); } } }
2) Output for the code:-
A] Server-Side :
Socket Programming

B] Client-Side :
Socket Programming

Launched to the world in 2017, Wisemonkeys(https://wisemonkeys.info/) is now a robust Learning management system.
Just follow a 3-step registration process and get connected. Since we appreciate genuine users and do not encourage spammers we follow small registration process:
1. Sign up(https://me.wisemonkeys.info/login)
2. Confirm your email. (for the first time the email might fall into your spam/junk/promotion folder. Please mark it as not spam and confirm the link).
3. Login and get started.
4. Or log in via Google/Microsoft.

Our hardworking team is thriving hard to make this platform better and better. If you have any suggestions and feedback, then do write to us at: genius@wisemonkeys.info

Total Views: 163Word Count: 315See All articles From Author

Add Comment

Computer Programming Articles

1. Unlock Your Data Skills With The Best Business Analytics Courses In Bhopal
Author: Rohan Rajput

2. Clinic Management Software: Features, Benefits, And How To Choose The Right One
Author: Agness Ruth

3. Top Training Institutes For The Best Business Analytics Courses In Bhopal
Author: Rohan Rajput

4. Why Is The Cloud Networking Solution Important For Any Business?
Author: GIGABITTechnologies

5. Pros And Cons Of Having A Design System
Author: brainbell10

6. Discover The Best Business Analytics Courses In Bhopal To Elevate Your Career
Author: Rohan Rajput

7. Exploring Decentralized Exchange Development
Author: davidbeckam

8. How Decentralized Exchanges Make Crypto Trading Better
Author: davidbeckam

9. Kiwi Web Solutions: Your Go-to Prosper Web Design Company For Exceptional Web Design In Utah
Author: Hazel Killer

10. Software Development & It Services Company Bhuj, India | Wrteam
Author: WRTeam

11. Why Choose Bhopal For Business Analytics Courses – A Career Perspective
Author: Rohan Rajput

12. Top Institutes Offering Business Analytics Courses In Bhopal
Author: Rohan Rajput

13. Learn, Launch, Lead: Digital Marketing Courses That Deliver Results”
Author: Riya Kumari

14. Have You Heard? Smart Invoice Accounting Software Is Your Best Bet For Growth
Author: Doris Rose

15. Your Guide To The Best Business Analytics Courses In Bhopal – 2025 Edition
Author: Rohan Rajput

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: