Java Networking and Socket Programming

Last updated on Dec 26 2022
Prabhas Ramanathan

Java Networking is a concept of connecting two or more computing devices together so that we can share resources.
Java socket programming provides facility to share data between different computing devices.

Table of Contents

Advantage of Java Networking

1. sharing resources
2. centralize software management

Java Networking Terminology

The widely used java networking terminologies are given below:
1. IP Address
2. Protocol
3. Port Number
4. MAC Address
5. Connection-oriented and connection-less protocol
6. Socket

1) IP Address

IP address is a unique number assigned to a node of a network e.g. 192.168.0.1 . It is composed of octets that range from 0 to 255.
It is a logical address that can be changed.

2) Protocol

A protocol is a set of rules basically that is followed for communication. For example:
• TCP
• FTP
• Telnet
• SMTP
• POP etc.

3) Port Number

The port number is used to uniquely identify different applications. It acts as a communication endpoint between applications.
The port number is associated with the IP address for communication between two applications.

4) MAC Address

MAC (Media Access Control) Address is a unique identifier of NIC (Network Interface Controller). A network node can have multiple NIC but each with unique MAC.

5) Connection-oriented and connection-less protocol

In connection-oriented protocol, acknowledgement is sent by the receiver. So it is reliable but slow. The example of connection-oriented protocol is TCP.
But, in connection-less protocol, acknowledgement is not sent by the receiver. So it is not reliable but fast. The example of connection-less protocol is UDP.

6) Socket

A socket is an endpoint between two way communication.
Visit next page for java socket programming.

java.net package

The java.net package provides many classes to deal with networking applications in Java. A list of these classes is given below:
• Authenticator
• CacheRequest
• CacheResponse
• ContentHandler
• CookieHandler
• CookieManager
• DatagramPacket
• DatagramSocket
• DatagramSocketImpl
• InterfaceAddress
• JarURLConnection
• MulticastSocket
• InetSocketAddress
• InetAddress
• Inet4Address
• Inet6Address
• IDN
• HttpURLConnection
• HttpCookie
• NetPermission
• NetworkInterface
• PasswordAuthentication
• Proxy
• ProxySelector
• ResponseCache
• SecureCacheResponse
• ServerSocket
• Socket
• SocketAddress
• SocketImpl
• SocketPermission
• StandardSocketOptions
• URI
• URL
• URLClassLoader
• URLConnection
• URLDecoder
• URLEncoder
• URLStreamHandler

Java Socket Programming

Java Socket programming is used for communication between the 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 information:
1. IP Address of Server, and
2. Port number.
Here, we are going to make one-way client and server communication. In this application, client sends a message to the server, server reads the message and prints it. Here, two classes are being used: Socket and ServerSocket. The Socket class is used to communicate client and server. Through this class, we can read and write message. The ServerSocket class is used at server-side. The accept() method of ServerSocket class blocks the console until the client is connected. After the successful connection of client, it returns the instance of Socket at server-side.

java 81

Socket class

A socket is simply an endpoint for communications between the machines. The Socket class can be used to create a socket.

Important methods

Method Description
1) public InputStream getInputStream() returns the InputStream attached with this socket.
2) public OutputStream getOutputStream() returns the OutputStream attached with this socket.
3) public synchronized void close() closes this socket

ServerSocket class

The ServerSocket class can be used to create a server socket. This object is used to establish communication with the clients.

Important methods

Method Description
1) public Socket accept() returns the socket and establish a connection between server and client.
2) public synchronized void close() closes the server socket.

Example of Java Socket Programming

Creating Server:

To create the server application, we need to create the instance of ServerSocket class. Here, we are using 6666 port number for the communication between the client and server. You may also choose any other port number. The accept() method waits for the client. If clients connects with the given port number, it returns an instance of Socket.
1. ServerSocket ss=new ServerSocket(6666);
2. Socket s=ss.accept();//establishes connection and waits for the client

Creating Client:

To create the client application, we need to create the instance of Socket class. Here, we need to pass the IP address or hostname of the Server and a port number. Here, we are using “localhost” because our server is running on same system.
1. Socket s=new Socket(“localhost”,6666);
Let’s see a simple of Java socket programming where client sends a text and server receives and prints it.
File: MyServer.java

1. import java.io.*; 
2. import java.net.*; 
3. public class MyServer { 
4. public static void main(String[] args){ 
5. try{ 
6. ServerSocket ss=new ServerSocket(6666); 
7. Socket s=ss.accept();//establishes connection 
8. DataInputStream dis=new DataInputStream(s.getInputStream()); 
9. String str=(String)dis.readUTF(); 
10. System.out.println("message= "+str); 
11. ss.close(); 
12. }catch(Exception e){System.out.println(e);} 
13. } 
14. }

File: MyClient.java

1. import java.io.*; 
2. import java.net.*; 
3. public class MyClient { 
4. public static void main(String[] args) { 
5. try{ 
6. Socket s=new Socket("localhost",6666); 
7. DataOutputStream dout=new DataOutputStream(s.getOutputStream()); 
8. dout.writeUTF("Hello Server"); 
9. dout.flush(); 
10. dout.close(); 
11. s.close(); 
12. }catch(Exception e){System.out.println(e);} 
13. } 
14. }

download this example
To execute this program open two command prompts and execute each program at each command prompt as displayed in the below figure.
After running the client application, a message will be displayed on the server console.

java 82

Example of Java Socket Programming (Read-Write both side)

In this example, client will write first to the server then server will receive and print the text. Then server will write to the client and client will receive and print the text. The step goes on.
File: MyServer.java

1. import java.net.*; 
2. import java.io.*; 
3. class MyServer{ 
4. public static void main(String args[])throws Exception{ 
5. ServerSocket ss=new ServerSocket(3333); 
6. Socket s=ss.accept(); 
7. DataInputStream din=new DataInputStream(s.getInputStream()); 
8. DataOutputStream dout=new DataOutputStream(s.getOutputStream()); 
9. BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); 
10. 
11. String str="",str2=""; 
12. while(!str.equals("stop")){ 
13. str=din.readUTF(); 
14. System.out.println("client says: "+str); 
15. str2=br.readLine(); 
16. dout.writeUTF(str2); 
17. dout.flush(); 
18. } 
19. din.close(); 
20. s.close(); 
21. ss.close(); 
22. }}

File: MyClient.java

1. import java.net.*; 
2. import java.io.*; 
3. class MyClient{ 
4. public static void main(String args[])throws Exception{ 
5. Socket s=new Socket("localhost",3333); 
6. DataInputStream din=new DataInputStream(s.getInputStream()); 
7. DataOutputStream dout=new DataOutputStream(s.getOutputStream()); 
8. BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); 
9. 
10. String str="",str2=""; 
11. while(!str.equals("stop")){ 
12. str=br.readLine(); 
13. dout.writeUTF(str); 
14. dout.flush(); 
15. str2=din.readUTF(); 
16. System.out.println("Server says: "+str2); 
17. } 
18. 
19. dout.close(); 
20. s.close(); 
21. }}

So, this brings us to the end of blog. This Tecklearn ‘Java Networking and Socket Programming’ blog helps you with commonly asked questions if you are looking out for a job in Java Programming. If you wish to learn Java and build a career Java Programming domain, then check out our interactive, Java and JEE Training, that comes with 24*7 support to guide you throughout your learning period. Please find the link for course details:

Java and JEE Training

Java and JEE Training

About the Course

Java and JEE Certification Training is designed by professionals as per the industrial requirements and demands. This training encompasses comprehensive knowledge on basic and advanced concepts of core Java & J2EE along with popular frameworks like Hibernate, Spring & SOA. In this course, you will gain expertise in concepts like Java Array, Java OOPs, Java Function, Java Loops, Java Collections, Java Thread, Java Servlet, and Web Services using industry use-cases and this will help you to become a certified Java expert.

Why Should you take Java and JEE Training?

• Java developers are in great demand in the job market. With average pay going between $90,000/- to $120,000/- depending on your experience and the employers.
• Used by more than 10 Million developers worldwide to develop applications for 15 Billion devices.
• Java is one of the most popular programming languages in the software world. Rated #1 in TIOBE Popular programming languages index (15th Consecutive Year)

What you will Learn in this Course?

Introduction to Java

• Java Fundamentals
• Introduction to Java Basics
• Features of Java
• Various components of Java language
• Benefits of Java over other programming languages
• Key Benefits of Java

Installation and IDE’s for Java Programming Language

• Installation of Java
• Setting up of Eclipse IDE
• Components of Java Program
• Editors and IDEs used for Java Programming
• Writing a Simple Java Program

Data Handling and Functions

• Data types, Operations, Compilation process, Class files, Loops, Conditions
• Using Loop Constructs
• Arrays- Single Dimensional and Multi-Dimensional
• Functions
• Functions with Arguments

OOPS in Java: Concept of Object Orientation

• Object Oriented Programming in Java
• Implement classes and objects in Java
• Create Class Constructors
• Overload Constructors
• Inheritance
• Inherit Classes and create sub-classes
• Implement abstract classes and methods
• Use static keyword
• Implement Interfaces and use it

Polymorphism, Packages and String Handling

• Concept of Static and Run time Polymorphism
• Function Overloading
• String Handling –String Class
• Java Packages

Exception Handling and Multi-Threading

• Exception handling
• Various Types of Exception Handling
• Introduction to multi-threading in Java
• Extending the thread class
• Synchronizing the thread

File Handling in Java

• Input Output Streams
• Java.io Package
• File Handling in Java

Java Collections

• Wrapper Classes and Inner Classes: Integer, Character, Boolean, Float etc
• Applet Programs: How to write UI programs with Applet, Java.lang, Java.io, Java.util
• Collections: ArrayList, Vector, HashSet, TreeSet, HashMap, HashTable

Java Database Connectivity (JDBC)

• Introduction to SQL: Connect, Insert, Update, Delete, Select
• Introduction to JDBC and Architecture of JDBC
• Insert/Update/Delete/Select Operations using JDBC
• Batch Processing Transaction
• Management: Commit and Rollback

Java Enterprise Edition – Servlets

• Introduction to J2EE
• Client Server architecture
• URL, Port Number, Request, Response
• Need for servlets
• Servlet fundamentals
• Setting up a web project in Eclipse
• Configuring and running the web app with servlets
• GET and POST request in web application with demo
• Servlet lifecycle
• Servlets Continued
• Session tracking and filter
• Forward and include Servlet request dispatchers

Java Server Pages (JSP)

• Fundamentals of Java Server Page
• Writing a code using JSP
• The architecture of JSP
• JSP Continued
• JSP elements: Scriptlets, expressions, declaration
• JSP standard actions
• JSP directives
• Introduction to JavaBeans
• ServletConfig and ServletContext
• Servlet Chaining
• Cookies Management
• Session Management

Hibernate

• Introduction to Hibernate
• Introduction to ORM
• ORM features
• Hibernate as an ORM framework
• Hibernate features
• Setting up a project with Hibernate framework
• Basic APIs needed to do CRUD operations with Hibernate
• Hibernate Architecture

POJO (Plain Old Java Object)

• POJO (Plain Old Java Object)
• Persistent Objects
• Lifecycle of Persistent Object

Spring

• Introduction to Spring
• Spring Fundamentals
• Advanced Spring

Got a question for us? Please mention it in the comments section and we will get back to you.

 

 

0 responses on "Java Networking and Socket Programming"

Leave a Message

Your email address will not be published. Required fields are marked *