If you want to get the localhost IP address in java , you can use the InetAddress class which exposes the getLocalHost method and later use the getHostAddress method of the InetAddress.
The getLocalHost method returns the host information of type InetAddress . The InetAddress type has the method getHostAddress which returns the IP address.
How to Get the localhost IP address in Java ?
Below is a sample of how to use the above API’s to get the localhost IP address in java.
package com.abundantcode;
import java.net.InetAddress;
public class Main {
public static void main(String[] args)
{
try
{
InetAddress ipObj = InetAddress.getLocalHost();
System.out.println(ipObj.getHostAddress());
}
catch (Exception ex)
{
System.out.println(ex.getStackTrace());
}
}
}
Leave a Reply