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