Source Code : Start new thread for each client

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Start new thread for each client

   

import java.io.IOException;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;

public class Main {
  public static void main(String args[]) throws Exception {
    ServerSocket ssock = new ServerSocket(1234);
    while (true) {
      Socket sock = ssock.accept();
      new SocketThread(sock).start();
    }
  }
}

class SocketThread extends Thread {
  Socket csocket;

  public SocketThread(Socket csocket) {
    this.csocket = csocket;
  }

  public void run() {
    try {
      PrintStream pstream = new PrintStream(csocket.getOutputStream());
      for (int i = 10; i >= 0; i--) {
        pstream.println(i);
      }
      pstream.close();
      csocket.close();
    } catch (IOException e) {
      System.out.println(e);
    }
  }
}

   
    
    
  

Thank with us