The following example demonstrates how to use the accept() method of the Socket class and the MultiThreadServer(socketname) method of the ServerSocket class to implement a multi-threaded server program:
/* author by w3cschool.cc MultiThreadServer.java */import java.io.IOException;import java.io.PrintStream;import java.net.ServerSocket;import java.net.Socket;public class MultiThreadServer implements Runnable { Socket csocket; MultiThreadServer(Socket csocket) { this.csocket = csocket; } public static void main(String args[]) throws Exception { ServerSocket ssock = new ServerSocket(1234); System.out.println("Listening"); while (true) { Socket sock = ssock.accept(); System.out.println("Connected"); new Thread(new MultiThreadServer(sock)).start(); } } public void run() { try { PrintStream pstream = new PrintStream (csocket.getOutputStream()); for (int i = 100; i >= 0; i--) { pstream.println(i + " bottles of beer on the wall"); } pstream.close(); csocket.close(); } catch (IOException e) { System.out.println(e); } }}
The above code runs the output results For:
Listening Connected
The above is the content of the Java example-Socket to implement multi-threaded server program. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!