应该用什么方法?

发布于 2024-09-28 01:22:47 字数 54 浏览 2 评论 0原文

在java中查找smtp服务器的IP地址?我找不到正确的 api 方法。

谢谢

For finding the ip address of the smtp server in java? I cant find the right api method.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧城空念 2024-10-05 01:22:47
InetAddress addr = InetAddress.getByName(hostname);

请参阅 文档。但是,我不清楚你为什么要这样做。

InetAddress addr = InetAddress.getByName(hostname);

See the docs. However, I'm not clear why you want to do this.

流绪微梦 2024-10-05 01:22:47

您必须询问系统管理员,因为这不是标准化的。

Linux 机器上的一个常见情况是机器本身知道如何发送邮件。在这种情况下,您将使用“127.0.0.1”作为 SMTP 主机。

You must ask the system administrator as this is not standardized.

A frequent scenario on Linux-machines is that the machine itself knows how to send out mail. In that case you would use "127.0.0.1" as the SMTP host.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文