Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 InetAddress 没有方法来确定给定的 IPv6 地址是否是全局地址,我可以假设给定的 IPv6 地址是全局的,如果它不是站点本地和链接本地?
Inet6Address addr = new Inet6Address(str); boolean isGlobal = !addr.isSiteLocalAddress && !addr.isLinkLocalAddress;
这是真的 ?我可以安全地使用它吗?或者有没有其他更好的方法来确定给定的 IPv6 地址是全局地址?