java获取当前网站的IP地址
1 package ip; 2 3 import java.net.InetAddress; 4 import java.net.UnknownHostException; 5 6 /** 7 * 8 * @author 9 * 10 */ 11 public class Ipspider { 12 13 public static void main(String[] args) { 14 15 try { 16 //用 getLocalHost() 方法创建的InetAddress的对象 17 InetAddress address = InetAddress.getLocalHost(); 18 System.out.println(address.getHostName());//主机名 19 System.out.println(address.getCanonicalHostName());//主机别名 20 System.out.println(address.getHostAddress());//获取IP地址 21 System.out.println("==============="); 22
23 //用域名创建 InetAddress对象 24 InetAddress address1 = InetAddress.getByName("www.baidu.com"); 25 //获取的是该网站的ip地址,如果我们所有的请求都通过nginx的,所以这里获取到的其实是nginx服务器的IP地址 26 System.out.println(address1.getHostName());//www.baidu.com 27 System.out.println(address1.getCanonicalHostName());//180.97.33.108 28 System.out.println(address1.getHostAddress());//180.97.33.108 29 System.out.println("==============="); 30
31 InetAddress[] addresses = InetAddress.getAllByName("www.baidu.com"); 32 for (InetAddress addr : addresses) { 33 System.out.println(addr); 34 // www.baidu.com/180.97.33.107 35 //www.baidu.com/180.97.33.108 36 } 37 } catch (UnknownHostException e) { 38 e.printStackTrace(); 39 } 40 41 } 42 }
本文来自博客园,作者:土木转行的人才,转载请注明原文链接
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
· 为什么 .NET8线程池 容易引发线程饥饿
· 一个适用于 .NET 的开源整洁架构项目模板
· API 风格选对了,文档写好了,项目就成功了一半!
· 【开源】C#上位机必备高效数据转换助手
· .NET 9.0 使用 Vulkan API 编写跨平台图形应用
· MyBatis中的 10 个宝藏技巧!