首页 > 代码库 > 获取IP地址
获取IP地址
public static void main(String[] args) throws IOException { try { InetAddress[] addresses2 = InetAddress.getAllByName("admin");//获取本机所有IP地址 for(InetAddress addr:addresses2){ System.out.println(addr); } InetAddress address = InetAddress.getLocalHost();//获取的是本地的IP地址 String hostAddress = address.getHostAddress();//192.168.0.121 System.out.println(hostAddress); InetAddress address1 = InetAddress.getByName("www.cnblogs.com");//根据网站地址获取网站的IP String hostAddress1 = address1.getHostAddress();//获取网站IP String hostName=address1.getHostName();//获取服务器名 boolean sock=address1.isReachable(3000);//是否可以到达该地址 System.out.println(hostAddress1);// System.out.println(hostName); System.out.println("Reach: " + sock); InetAddress[] addresses = InetAddress.getAllByName("www.baidu.com");//根据主机名返回其可能的所有InetAddress对象 for(InetAddress addr:addresses){ System.out.println(addr); } } catch (UnknownHostException e) { e.printStackTrace(); } }
获取IP地址
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。