How to get IP address of a Host in Java?
Description:
You can get IP address of any host by using InetAddress class. By calling getByName() method with host name as parameter, it returns InetAddress object. On this object you can call getHostAddress() method to get the IP address of the given host.
Code:
?1234567891011121314151617 package com.myjava.ip; import java.net.InetAddress;import java.net.UnknownHostException; public class MyIpByHost { public static void main(String a[]){ try { InetAddress host = InetAddress.getByName("www.java2novice.com"); System.out.println(host.getHostAddress()); } catch (UnknownHostException ex) { ex.printStackTrace(); } }}
Copyright © 2011 - All Rights Reserved - Softron.in
Template by Softron Technology