从 Java 进行 SURBL 查找的简单方法?

发布于 2024-08-24 15:28:33 字数 214 浏览 7 评论 0原文

我正在阅读有关 SURBLs (已知垃圾邮件主机)的信息,用于对垃圾邮件进行批量分类过程。主要访问方法似乎是通过 DNS 查找。我想知道从 Java 代码中进行此类查找的常用方法是什么。由于这是一个批处理过程,没有严格的性能要求,因此我认为最重要的功能就是简单性。

I am reading about SURBLs (known spam hosts), for purpose of classifying spam, as a batch process. Main access method seems to be via DNS lookups. I was wondering what's the usual way to do such lookups from Java code. Since this is a batch process with no strict performance requirements, I think most important feature would just be simplicity.

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

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

发布评论

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

评论(1

我还不会笑 2024-08-31 15:28:33

您可以简单地执行以下操作:

InetAddress.getByName("test.multi.surbl.org").getHostAddress();

如果无法解析主机名,则不会列出它。如果可以解析,则 IP 地址的最后一个八位字节指示其列出位置

如果您需要更多高级功能,还有 dnsjava。例如,也许您也想检查 TXT 记录。

You could simply do:

InetAddress.getByName("test.multi.surbl.org").getHostAddress();

If the hostname can not be resolved, it's not listed. If it can be resolved, the last octet of the ip address indicates where it's listed.

There's also dnsjava if you need more advanced features. For example, perhaps you would like to check the TXT record too.

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