Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是学习 JEE6 的新手。我需要知道使用 JEE6 获取客户端和服务器 IP 地址。有没有其他方法可以获得这些 ip 。
您可以使用请求对象获取客户端 IP。
request.getRemoteAddr();
服务器 IP 将是您的应用程序将被部署的机器的 IP。