Uses of Class
java.net.UnknownHostException
Packages that use UnknownHostException
Package
Description
Provides the classes for implementing networking applications.
Provides classes for networking applications.
Provides classes for the secure socket package.
- 
Uses of UnknownHostException in java.netMethods in java.net that throw UnknownHostExceptionModifier and TypeMethodDescriptionstatic InetAddress[]InetAddress.getAllByName(String host)Given the name of a host, returns an array of its IP addresses, based on the configured name service on the system.static Inet6AddressInet6Address.getByAddress(String host, byte[] addr, int scope_id)Create an Inet6Address in the exact manner ofInetAddress.getByAddress(String,byte[])except that the IPv6 scope_id is set to the given numeric value.static Inet6AddressInet6Address.getByAddress(String host, byte[] addr, NetworkInterface nif)Create an Inet6Address in the exact manner ofInetAddress.getByAddress(String,byte[])except that the IPv6 scope_id is set to the value corresponding to the given interface for the address type specified inaddr.static InetAddressInetAddress.getByAddress(byte[] addr)Returns anInetAddressobject given the raw IP address .static InetAddressInetAddress.getByAddress(String host, byte[] addr)Creates an InetAddress based on the provided host name and IP address.static InetAddressDetermines the IP address of a host, given the host's name.static InetAddressInetAddress.getLocalHost()Returns the address of the local host.Constructors in java.net that throw UnknownHostException
- 
Uses of UnknownHostException in javax.netMethods in javax.net that throw UnknownHostExceptionModifier and TypeMethodDescriptionabstract SocketSocketFactory.createSocket(String host, int port)Creates a socket and connects it to the specified remote host at the specified remote port.abstract SocketSocketFactory.createSocket(String host, int port, InetAddress localHost, int localPort)Creates a socket and connects it to the specified remote host on the specified remote port.
- 
Uses of UnknownHostException in javax.net.sslConstructors in javax.net.ssl that throw UnknownHostExceptionModifierConstructorDescriptionprotectedUsed only by subclasses.protectedSSLSocket(String host, int port, InetAddress clientAddress, int clientPort)Used only by subclasses.