Java ServerSocket(int port) Constructor
Syntax
ServerSocket(int port) constructor from ServerSocket has the following syntax.
public ServerSocket(int port) throws IOException
Example
In the following code shows how to use ServerSocket.ServerSocket(int port) constructor.
// w w w . j a va 2 s. c o m
import java.io.DataOutputStream;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
public class Main {
public static void main(String args[]) {
try {
int port = 5555;
ServerSocket ss = new ServerSocket(port);
while (true) {
// Accept incoming requests
Socket s = ss.accept();
// Write result to client
OutputStream os = s.getOutputStream();
DataOutputStream dos = new DataOutputStream(os);
dos.writeInt(100);
s.close();
}
} catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}