This server displays messages to a single client : Server « Network Protocol « Java






This server displays messages to a single client

This server displays messages to a single client
  
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;

public class BeerServer {
  public static void main(String args[]) throws Exception {
    ServerSocket ssock = new ServerSocket(1234);
    System.out.println("Listening");
    Socket sock = ssock.accept();
    ssock.close(); // no more connects

    PrintStream ps = new PrintStream(sock.getOutputStream());
    for (int i = 100; i >= 0; i--) {
      ps.println(i + " from Java Source and Support.");
    }
    ps.close();
    sock.close();
  }
}



           
         
    
  








Related examples in the same category

1.A generic framework for a flexible, multi-threaded server
2.Server allows connections on socket 6123Server allows connections on socket 6123
3.The client can specify information to control the output of a serverThe client can specify information to control the output of a server
4.A server can use specialized streams to deliver typed dataA server can use specialized streams to deliver typed data
5.Serve entire objects using ObjectOutputStreamServe entire objects using ObjectOutputStream
6.A multithreaded serverA multithreaded server
7.Base class to build multithreaded servers easily
8.Manage a pool of threads for clients
9.Client estimates the speed of the network connection to the server
10.This server retrieves the time using the RFC867 protocol.This server retrieves the time using the RFC867 protocol.
11.Quote Server
12.Logging Server based on SocketServer
13.Client and Server Demo
14.Reflector
15.Simple Http Server