Java ServerSocket .bind (SocketAddress endpoint)
Syntax
ServerSocket.bind(SocketAddress endpoint) has the following syntax.
public void bind(SocketAddress endpoint) throws IOException
Example
In the following code shows how to use ServerSocket.bind(SocketAddress endpoint) method.
// w w w .j av a 2 s . com
import java.nio.CharBuffer;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
public class Main {
public static void main(String[] args) throws Exception{
CharsetEncoder encoder = Charset.forName("US-ASCII").newEncoder();
ServerSocketChannel server = ServerSocketChannel.open();
server.socket().bind(new java.net.InetSocketAddress(8000));
for (;;) { // This server runs forever
SocketChannel client = server.accept();
String response = new java.util.Date().toString() + "\r\n";
client.write(encoder.encode(CharBuffer.wrap(response)));
client.close();
}
}
}