位置:首页 > Java技术 > java实例在线教程 > Java主机指定IP地址

Java主机指定IP地址

如何从IP地址找出主机名?

解决方法

下面的示例演示如何使用net.InetAddress类的InetAddress.getByName()方法将主机名变更其特定的IP地址。

import java.net.InetAddress;

public class Main {
  public static void main(String[] argv) throws Exception {

    InetAddress addr = InetAddress.getByName("74.125.67.100");
    System.out.println("Host name is: "+addr.getHostName());
    System.out.println("Ip address is: "+ addr.getHostAddress());
  }
}

结果

上面的代码示例将产生以下结果。

http://www.javatutorial.com = 123.14.2.85