In this example, we will take a look at the Java code to get the IP address of the Client computer where this code is executed,
We can make use of the getLocalHost() method from InetAddress class that is present in java.net package.
Example: Code to get the IP Addressimport java.net.InetAddress;
import java.net.UnknownHostException;
/**
* Java Program to identify local
* IP address
*
* Author: Code2care.org
* Date: 03-Apr-2022
* Version: 1.0
*
*/
public class JavaGetIPAddressExample {
public static void main(String[] args) throws UnknownHostException {
System.out.println(getLocalIPAddress());
}
public static String getLocalIPAddress() throws UnknownHostException {
InetAddress ipAddress =InetAddress.getLocalHost();
String ipAddressString = ipAddress.getHostAddress();
return ipAddressString;
}
}
Output:
192.168.0.122
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!