Socket
Create client Socket
With this example we are going to demonstrate how to create a clientSocket in Java.
In short, to create a socket and connect to a remote server you should :
- Define theAddress of the server socket to connect to
- Define the specific port the server process running on the remote socket listens to
- Create a new socket and connect it to a specific port
as shown in the code snippet below.
If the server address exists and there is no connectivity issues between the client and the server machines then after establishing a connection you should be able to transfer any kind of data between them over the socket API provided by the JVM.
package com.javacodegeeks.snippets.core;import java.io.IOException;import java.net.InetAddress;import java.net.Socket;import java.net.UnknownHostException;public class CreateClientSocket {public static void main(String[] args) {try {InetAddress addr = InetAddress.getByName("javacodegeeks.com"); int port = 80; // Creates a stream socket and connects it to the specified port // number at the specified IP address. Blocks until the connection succeeds. Socket socket = new Socket(addr, port);System.out.println("Socket connected..."); }catch (UnknownHostException e) {System.out.println("Host not found: " + e.getMessage());}catch (IOException ioe) {System.out.println("I/O Error " + ioe.getMessage());}}}This was an example of how to create a Java Socket so as to connect to a server process.
Do you want to know how to develop your skillset to become aJava Rockstar?
Subscribe to our newsletter to start Rockingright now!
To get you started we give you our best selling eBooks forFREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to theTerms andPrivacy Policy

Thank you!
We will contact you soon.
Byron Kiourtzoglou
Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor atJava Code Geeks.



