bind(SocketAddress): This method is available in the java.net.ServerSocket class of Java.
Syntax:
void java.net.ServerSocket.bind(SocketAddress endpoint) throws IOException
This method takes one argument. This method binds the ServerSocket to a specific address(IP address and port number).
If the address is null, the system will pick up an ephemeral port and a valid local address to bind the socket.
Parameters: One parameter is required for this method.
endpoint: The IP address and port number to bind to.
Throws:
1. IOException - if the bind operation fails or the socket is already bound.
2. SecurityException - if a SecurityManager is present and its checkListen method doesn't allow the operation.
3. IllegalArgumentException - if the endpoint is a SocketAddress subclass not supported by this socket.
Approach
Java
package com.ServerSocket;import java.io.IOException;import java.net.InetAddress;import java.net.InetSocketAddress;import java.net.ServerSocket;import java.net.SocketAddress;public class ServerSocketbind {public static void main(String[] args) throws IOException {int port = 8081, backlog = 5;InetAddress bindAddr = InetAddress.getLocalHost();ServerSocket serverSocket = new ServerSocket(port, backlog, bindAddr);SocketAddress endpoint = new InetSocketAddress(8081);serverSocket.bind(endpoint);System.out.println("Successfully bind");serverSocket.close();}}
Output:
Exception in thread "main" java.net.SocketException: Already bound at java.base/java.net.ServerSocket.bind(ServerSocket.java:382) at java.base/java.net.ServerSocket.bind(ServerSocket.java:350) at com.ServerSocket.ServerSocketbind.main(ServerSocketbind.java:17)
Some other methods of ServerSocket class
ServerSocket(): This method creates an unbound server socket.
ServerSocket(int): This method creates a server socket, bound to the specified port. A port number of 0 means that the port number is automatically allocated, typically from an ephemeral port range. This port number can then be retrieved by calling getLocalPort.
ServerSocket(int, int): This method creates a server socket and binds it to the specified local port number, with the specified backlog. A port number of 0 means that the port number is automatically allocated, typically from an ephemeral port range. This port number can then be retrieved by calling getLocalPort.
ServerSocket(int, int, InetAddress): This method creates a server with the specified port, listens to the backlog, and local IP address to bind to. The bindAddr argument can be used on a multi-homed host for ServerSocket that will only accept connect requests to one of its addresses.
accept(): This method listens for a connection to be made to this socket and accepts it. The method blocks until a connection is made.
bind(SocketAddress): This method binds the ServerSocket to a specific address(IP address and port number).
bind(SocketAddress, int): This method binds the ServerSocket to a specific address.
close(): This method closes this socket. Any thread currently blocked in accept() will throw a SocketException.
getChannel(): This method returns the unique java.nio.channels.ServerSocketChannel object associated with this socket, if any.
getInetAddress(): This method returns the local address of this server socket.
getLocalPort(): This method returns the port number on which this socket is listening.
getLocalSocketAddress(): This method returns the address of the endpoint this socket is bound to.
getOption(SocketOption): This method returns the value of a socket option.
getReceiveBufferSize(): This method gets the value of the SO_RCVBUF option for this ServerSocket, which is the proposed buffer size that will be used for Sockets accepted from this ServerSocket.
getReuseAddress(): This method tests if SO_REUSEADDR is enabled.
getSoTimeout(): This method retrieves the setting for SO_TIMEOUT.0 returns implying that the option is disabled (i.e., timeout of infinity).
isBound(): This method returns the binding state of the ServerSocket.
isClosed(): This method returns the closed state of the ServerSocket.
setOption(SocketOption, Object): This method sets the value of a socket option.
setPerformancePreferences(int, int, int): This method sets performance preferences for this ServerSocket.
setReceiveBufferSize(int): This method sets a default proposed value for the SO_RCVBUF option for sockets accepted from this ServerSocket.
setReuseAddress(boolean): This method enables/disables the SO_REUSEADDRsocket option. When a TCP connection is closed the connection may remain in a timeout state for a period of time after the connection is closed.
setSocketFactory(SocketImplFactory): This method sets the server socket implementation factory for the application.
setSoTimeout(int): This method enables/disables SO_TIMEOUT with the specified timeout, in milliseconds.
supportedOptions(): This method returns a set of the socket options supported by this server socket. This method will continue to return the set of options even after the socket has been closed.
toString(): This method returns the implementation address and implementation port of this socket as a String.
No comments:
Post a Comment