This is a code snippet to get the current IP address of a system.
import java.net.InetAddress; import java.net.UnknownHostException; public class IpAdress { //public static void main(String[] args){ public static InetAddress getIP() { InetAddress ip; try { ip = InetAddress.getLocalHost(); return ip; } catch (UnknownHostException e) { e.printStackTrace(); } return null; } }

Developer, Tinkere, a proud Dad.. love to spend my available time playing with Tech!!