Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / Java

Using Sockets in Java - Client

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
24 Mar 2008CPOL2 min read 45.2K   926   15   4
Creating a client program using Java.

Introduction

In this article, I will demonstrate how to create a client program using Java. This article is the continuation of my previous article about creating a server program. To understand this article, I recommend that you have already read the first one: Using Sockets in Java - Server.

Using the code

This code is very similar to the server code. To create a client, you need to follow only four steps:

  1. Establish a connection to the server.
  2. Set up input and output streams.
  3. Send and receive data.
  4. Close the connection.

Let's take the first step:

  1. We have to create a Socket object, by supplying its constructor with the following arguments:
    • the server's IP address (this is the Inet address)
    • the appropriate port number for the service

    The port number for the server and client programs must be the same, of course!

    To be more easy, we will place the client and the server on the same host, which will allow us to retrieve the IP address by calling the static method getLocalHost of the class InetAddress.

    Java
    Socket link = new Socket(InetAddress.getLocalHost(), 1234);
  2. These are set up in exactly the same way as the server streams are set up (by calling the methods getInputStream and getOutputStream of the Socket object that was created in step 2 in the previous article: Using Sockets in Java - Server).
  3. The Scanner object at the client end will receive messages sent by the PrintWriter object at the server end, while the PrintWriter object at the client end will send messages that are received by the Scanner object at the server end (using the methods nextLine and println).
  4. This is exactly the same as for the server process:
  5. Java
    link.close();

The code

Here is the complete code:

Java
import java.io.*;
import java.net.*;
import java.util.*;

public class TCPEchoClient
{
    private static InetAddress host;
    private static final int PORT = 1234;

    public static void main(String[] args)
    {
        try
        {
            host = InetAddress.getLocalHost();
        }
        catch(UnknownHostException uhEx)
        {
            System.out.println("Host ID not found!");
            System.exit(1);
        }
        accessServer();
    }

    private static void accessServer()
    {
        Socket link = null;      //Step 1.

        try
        {
            link = new Socket(host,PORT); //Step 1.

            Scanner input = new Scanner(link.getInputStream());//Step 2.

            PrintWriter output =
                new PrintWriter(link.getOutputStream(),true);//Step 2.

            //Set up stream for keyboard entry...
            Scanner userEntry = new Scanner(System.in);

            String message, response;
            do
            {
                System.out.print("Enter message: ");
                message =  userEntry.nextLine();
                output.println(message);        //Step 3.
                response = input.nextLine();    //Step 3.
                System.out.println("\nSERVER> " + response);
            }while (!message.equals("***CLOSE***"));
        }
        catch(IOException ioEx)
        {
            ioEx.printStackTrace();
        }

        finally
        {
            try
            {
                System.out.println("\n* Closing connection... *");
                link.close();                    //Step 4.
            }
            catch(IOException ioEx)
            {
                System.out.println("Unable to disconnect!");
                System.exit(1);
            }
        }
    }
}

For more information or for any kind of clarifications, please don't hesitate to contact me: mihailescu.marius@yahoo.com. Until then, I wish you all Happy Coding!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Sami Rebeiz25-Feb-13 12:56
Sami Rebeiz25-Feb-13 12:56 
GeneralMy vote of 5 Pin
Member 432084430-Sep-11 3:31
Member 432084430-Sep-11 3:31 
Questionnot work ??? Pin
einstein8531-Jul-10 0:44
einstein8531-Jul-10 0:44 
Exception in thread "main" java.lang.NoClassDefFoundError: TCPEchoClient/java
Caused by: java.lang.ClassNotFoundException: TCPEchoClient.java
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: TCPEchoClient.java. Program will exit.
GeneralJava Sockets Articles - Great Work Pin
MrZaggy7-Aug-09 4:54
MrZaggy7-Aug-09 4:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.