本文介绍了用Java找出您的网站访问者IP地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有简单可靠的方法来使用 Java 检测您的网站访问者 IP 地址.我正在尝试使用 Akismet 来检测我的博客文章/评论中的垃圾邮件.API 要求我指定评论者的 IP 地址.
Is there simple and reliable way to detect your website visitor IP address using Java. I am trying to make use of Akismet to detect spam on my blog post/comment. The API require me to specify the IP address of the commenter.
谢谢 =)
推荐答案
调用 ServletRequest.getRemoteAddr() 应该这样做.
这篇关于用Java找出您的网站访问者IP地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!