Java确定本地IP地址
如何确定IP地址和本地计算机的主机名?
解决方法
下面的示例演示如何使用InetAddress类的getLocalAddress()方法找到系统本地IP地址和主机名。
import java.net.InetAddress; public class Main { public static void main(String[] args) throws Exception { InetAddress addr = InetAddress.getLocalHost(); System.out.println("Local HostAddress: "+addr.getHostAddress()); String hostname = addr.getHostName(); System.out.println("Local host name: "+hostname); } }
结果
上面的代码示例将产生以下结果。
Local HostAddress: 192.168.1.4 Local host name: harsh