Advanced JAVA Programming
(COURSE CODE: B19CS2201)
InetAddress class
Sri. M.Jeevana Sujitha
Assistant Professor
Department of Computer Science and Engineering SRKR Engineering College, Bhimavaram, A.P. - 534204
OBJECTIVES
The Objectives of this lecture is
InetAddress class
InetAddress class
Method | Description |
public static InetAddress getByName(String host) throws UnknownHostException | It returns the instance of InetAddress containing LocalHost IP and name. |
public static InetAddress getLocalHost() throws UnknownHostException | It returns the instance of InetAdddress containing local host name and address. |
public String getHostName() | It returns the host name of the IP address. |
public String getHostAddress() | It returns the IP address in string format. |
THANK YOU