| Package | Description |
|---|---|
| java.net |
Provides the classes for implementing networking applications.
|
| javax.net |
Provides classes for networking applications.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| Modifier and Type | Method and Description |
|---|---|
static InetAddress |
InetAddress.getAllByName(String
Given the name of a host, returns an array of its IP addresses, based on the configured name service on the system.
|
static InetAddress |
InetAddress.getByAddress(byte[] addr)
Returns an
InetAddress object given the raw IP address .
|
static InetAddress |
InetAddress.getByAddress(String
Creates an InetAddress based on the provided host name and IP address.
|
static Inet6Address |
Inet6Address.getByAddress(String
Create an Inet6Address in the exact manner of
InetAddress except that the IPv6 scope_id is set to the given numeric value.
|
static Inet6Address |
Inet6Address.getByAddress(String
Create an Inet6Address in the exact manner of
InetAddress except that the IPv6 scope_id is set to the value corresponding to the given interface for the address type specified in
addr.
|
static InetAddress |
InetAddress.getByName(String
Determines the IP address of a host, given the host's name.
|
static InetAddress |
InetAddress.getLocalHost()
Returns the address of the local host.
|
| Constructor and Description | |
|---|---|
Socket(String
Creates a stream socket and connects it to the specified port number on the named host.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Socket |
SocketFactory.createSocket(String
Creates a socket and connects it to the specified remote host at the specified remote port.
|
abstract Socket |
SocketFactory.createSocket(String
Creates a socket and connects it to the specified remote host on the specified remote port.
|
| Constructor and Description | |
|---|---|
SSLSocket(String
Used only by subclasses.
|
|
SSLSocket(String
Used only by subclasses.
|