gpt4 book ai didi

java - InetAddress.getLocalHost() 运行缓慢(30 多秒)

转载 作者:IT老高 更新时间:2023-10-28 20:33:00 25 4
gpt4 key购买 nike

使用以下代码:

try {
System.out.println(new Date());
InetAddress hostName = InetAddress.getLocalHost();
System.out.println(new Date());
} catch (UnknownHostException e) {
e.printStackTrace();
}

我得到这个输出:

Thu Oct 22 20:58:22 BST 2015
Thu Oct 22 20:58:52 BST 2015

换句话说,执行时间为 30 秒。机器是带有 Java 1.8.0_60 的 2015 Macbook Pro。

为什么需要这么长时间?

最佳答案

问题可以通过在 /etc/hosts 中添加以下内容来解决(假设 hostname 命令的输出是 my-macbook:

127.0.0.1   my-macbook
::1 my-macbook

这会将时间返回到更合适的位置(< 1 秒)

关于java - InetAddress.getLocalHost() 运行缓慢(30 多秒),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33289695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com