在我的应用程序中,我使用以下代码按主机名获取IP地址:
String ip = null;
try {
ip = InetAddress.getByName(hostName).getHostAddress();
} catch (final UnknownHostException e) {
LOGGER.error("Unknown host:", e);
}
在生产版本中,有时这种方法会挂起。 我无法理解,可能是什么原因?