| public class java.net InetAddress
|
Java SE 6 |
An IP address is either a 32-bit or 128-bit unsigned number used by IP, a lower-level protocol on which protocols like UDP and TCP are built. The IP address architecture is defined by RFC 790: Assigned Numbers, RFC 1918: Address Allocation for Private Internets, RFC 2365: Administratively Scoped IP Multicast, and RFC 2373: IP Version 6 Addressing Architecture. An instance of an InetAddress consists of an IP address and possibly its corresponding host name (depending on whether it is constructed with a host name or whether it has already done reverse host name resolution).
unicast An identifier for a single interface. A packet sent to a unicast address is delivered to the interface identified by that address. The Unspecified Address -- Also called anylocal or wildcard address. It must never be assigned to any node. It indicates the absence of an address. One example of its use is as the target of bind, which allows a server to accept a client connection on any interface, in case the server host has multiple interfaces.
The unspecified address must not be used as the destination address of an IP packet.
The Loopback Addresses -- This is the address assigned to the loopback interface. Anything sent to this IP address loops around and becomes IP input on the local host. This address is often used when testing a client.
multicast An identifier for a set of interfaces (typically belonging to different nodes). A packet sent to a multicast address is delivered to all interfaces identified by that address.
Link-local addresses are designed to be used for addressing on a single link for purposes such as auto-address configuration, neighbor discovery, or when no routers are present.
Site-local addresses are designed to be used for addressing inside of a site without the need for a global prefix.
Global addresses are unique across the internet.
For IPv4 address format, please refer to Inet4Address#format; For IPv6 address format, please refer to Inet6Address#format.
Reverse name resolution means that for any IP address, the host associated with the IP address is returned.
The InetAddress class provides methods to resolve host names to their IP addresses and vice versa.
By default, when a security manager is installed, in order to protect against DNS spoofing attacks, the result of positive host name resolutions are cached forever. When a security manager is not installed, the default behavior is to cache entries for a finite (implementation dependent) period of time. The result of unsuccessful host name resolution is cached for a very short period of time (10 seconds) to improve performance.
If the default behavior is not desired, then a Java security property can be set to a different Time-to-live (TTL) value for positive caching. Likewise, a system admin can configure a different negative caching TTL value when needed.
Two Java security properties control the TTL values used for positive and negative host name resolution caching:
- networkaddress.cache.ttl
- Indicates the caching policy for successful name lookups from the name service. The value is specified as as integer to indicate the number of seconds to cache the successful lookup. The default setting is to cache for an implementation specific period of time.
A value of -1 indicates "cache forever".
- networkaddress.cache.negative.ttl (default: 10)
- Indicates the caching policy for un-successful name lookups from the name service. The value is specified as as integer to indicate the number of seconds to cache the failure for un-successful lookups.
A value of 0 indicates "never cache". A value of -1 indicates "cache forever".
| version | 1.115, 07/26/06 |
| since | JDK1.0 |
| See also | getByAddress(byte[]), getByAddress(java.lang.String, byte[]), getAllByName(java.lang.String), getByName(java.lang.String), getLocalHost() |
| Methods | |||||||
|---|---|---|---|---|---|---|---|
| public boolean | equals(Object obj) Details
Compares this object against the specified object.
The result is true if and only if the argument is
not null and it represents the same IP address as
this object.
Two instances of
| ||||||
| public int | hashCode() Details
Returns a hashcode for this IP address.
| ||||||
| public String | toString() Details
Converts this IP address to a String. The
string returned is of the form: hostname / literal IP
address.
If the host name is unresolved, no reverse name service loopup
is performed. The hostname part will be represented by an empty string.
| ||||||
| Properties | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public byte[] | getAddress() Details
Returns the raw IP address of this InetAddress
object. The result is in network byte order: the highest order
byte of the address is in getAddress()[0].
| ||||||||||||||
| public static InetAddress[] | getAllByName(String host) throws UnknownHostException Details
Given the name of a host, returns an array of its IP addresses,
based on the configured name service on the system.
The host name can either be a machine name, such as
" For If the host is null then an InetAddress representing an address of the loopback interface is returned. See RFC 3330 section 2 and RFC 2373 section 2.5.3. If there is a security manager and
| ||||||||||||||
| public boolean | isAnyLocalAddress() Details
Utility routine to check if the InetAddress in a wildcard address.
| ||||||||||||||
| public static InetAddress | getByAddress(String host, byte[] addr) throws UnknownHostException Details
Create an InetAddress based on the provided host name and IP address
No name service is checked for the validity of the address.
The host name can either be a machine name, such as
" No validity checking is done on the host name either. If addr specifies an IPv4 address an instance of Inet4Address will be returned; otherwise, an instance of Inet6Address will be returned. IPv4 address byte array must be 4 bytes long and IPv6 byte array must be 16 bytes long
| ||||||||||||||
| public static InetAddress | getByAddress(byte[] addr) throws UnknownHostException Details
Returns an InetAddress object given the raw IP address .
The argument is in network byte order: the highest order
byte of the address is in getAddress()[0].
This method doesn't block, i.e. no reverse name service lookup is performed. IPv4 address byte array must be 4 bytes long and IPv6 byte array must be 16 bytes long
| ||||||||||||||
| public static InetAddress | getByName(String host) throws UnknownHostException Details
Determines the IP address of a host, given the host's name.
The host name can either be a machine name, such as
" For If the host is null then an InetAddress representing an address of the loopback interface is returned. See RFC 3330 section 2 and RFC 2373 section 2.5.3.
| ||||||||||||||
| public String | getCanonicalHostName() Details
Gets the fully qualified domain name for this IP address.
Best effort method, meaning we may not be able to return
the FQDN depending on the underlying system configuration.
If there is a security manager, this method first
calls its
| ||||||||||||||
| public String | getHostAddress() Details
Returns the IP address string in textual presentation.
| ||||||||||||||
| public String | getHostName() Details
Gets the host name for this IP address.
If this InetAddress was created with a host name,
this host name will be remembered and returned;
otherwise, a reverse name lookup will be performed
and the result will be returned based on the system
configured name lookup service. If a lookup of the name service
is required, call
If there is a security manager, its
| ||||||||||||||
| public boolean | isLinkLocalAddress() Details
Utility routine to check if the InetAddress is an link local address.
| ||||||||||||||
| public static InetAddress | getLocalHost() throws UnknownHostException Details
Returns the local host.
If there is a security manager, its
| ||||||||||||||
| public boolean | isLoopbackAddress() Details
Utility routine to check if the InetAddress is a loopback address.
| ||||||||||||||
| public boolean | isMCGlobal() Details
Utility routine to check if the multicast address has global scope.
| ||||||||||||||
| public boolean | isMCLinkLocal() Details
Utility routine to check if the multicast address has link scope.
| ||||||||||||||
| public boolean | isMCNodeLocal() Details
Utility routine to check if the multicast address has node scope.
| ||||||||||||||
| public boolean | isMCOrgLocal() Details
Utility routine to check if the multicast address has organization scope.
| ||||||||||||||
| public boolean | isMCSiteLocal() Details
Utility routine to check if the multicast address has site scope.
| ||||||||||||||
| public boolean | isMulticastAddress() Details
Utility routine to check if the InetAddress is an
IP multicast address.
| ||||||||||||||
| public boolean | isReachable(int timeout) throws IOException Details
Test whether that address is reachable. Best effort is made by the
implementation to try to reach the host, but firewalls and server
configuration may block requests resulting in a unreachable status
while some specific ports may be accessible.
A typical implementation will use ICMP ECHO REQUESTs if the
privilege can be obtained, otherwise it will try to establish
a TCP connection on port 7 (Echo) of the destination host.
The timeout value, in milliseconds, indicates the maximum amount of time the try should take. If the operation times out before getting an answer, the host is deemed unreachable. A negative value will result in an IllegalArgumentException being thrown.
| ||||||||||||||
| public boolean | isReachable(NetworkInterface netif, int ttl, int timeout) throws IOException Details
Test whether that address is reachable. Best effort is made by the
implementation to try to reach the host, but firewalls and server
configuration may block requests resulting in a unreachable status
while some specific ports may be accessible.
A typical implementation will use ICMP ECHO REQUESTs if the
privilege can be obtained, otherwise it will try to establish
a TCP connection on port 7 (Echo) of the destination host.
The The timeout value, in milliseconds, indicates the maximum amount of time the try should take. If the operation times out before getting an answer, the host is deemed unreachable. A negative value will result in an IllegalArgumentException being thrown.
| ||||||||||||||
| public boolean | isSiteLocalAddress() Details
Utility routine to check if the InetAddress is a site local address.
| ||||||||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|